home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / v cisle / mobiDVD / MobiDVD-1.0.0.6.exe / xulrunner / components / nsUpdateService.js < prev    next >
Text File  |  2007-07-27  |  104KB  |  3,093 lines

  1. //@line 42 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2.  
  3. const PREF_APP_UPDATE_ENABLED             = "app.update.enabled";
  4. const PREF_APP_UPDATE_AUTO                = "app.update.auto";
  5. const PREF_APP_UPDATE_MODE                = "app.update.mode";
  6. const PREF_APP_UPDATE_SILENT              = "app.update.silent";
  7. const PREF_APP_UPDATE_INTERVAL            = "app.update.interval";
  8. const PREF_APP_UPDATE_TIMER               = "app.update.timer";
  9. const PREF_APP_UPDATE_LOG_BRANCH          = "app.update.log.";
  10. const PREF_APP_UPDATE_URL                 = "app.update.url";
  11. const PREF_APP_UPDATE_URL_OVERRIDE        = "app.update.url.override";
  12. const PREF_APP_UPDATE_URL_DETAILS         = "app.update.url.details";
  13. const PREF_APP_UPDATE_CHANNEL             = "app.update.channel";
  14. const PREF_APP_UPDATE_SHOW_INSTALLED_UI   = "app.update.showInstalledUI";
  15. const PREF_APP_UPDATE_LASTUPDATETIME_FMT  = "app.update.lastUpdateTime.%ID%";
  16. const PREF_GENERAL_USERAGENT_LOCALE       = "general.useragent.locale";
  17. const PREF_APP_UPDATE_INCOMPATIBLE_MODE   = "app.update.incompatible.mode";
  18. const PREF_UPDATE_NEVER_BRANCH            = "app.update.never.";
  19. const PREF_PARTNER_BRANCH                 = "app.partner.";
  20.  
  21. const URI_UPDATE_PROMPT_DIALOG  = "chrome://mozapps/content/update/updates.xul";
  22. const URI_UPDATE_HISTORY_DIALOG = "chrome://mozapps/content/update/history.xul";
  23. const URI_BRAND_PROPERTIES      = "chrome://branding/locale/brand.properties";
  24. const URI_UPDATES_PROPERTIES    = "chrome://mozapps/locale/update/updates.properties";
  25. const URI_UPDATE_NS             = "http://www.mozilla.org/2005/app-update";
  26.  
  27. const KEY_APPDIR          = "XCurProcD";
  28. //@line 69 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  29. const KEY_UPDROOT         = "UpdRootD";
  30. const KEY_UAPPDATA        = "UAppData";
  31. //@line 72 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  32.  
  33. const DIR_UPDATES         = "updates";
  34. const FILE_UPDATE_STATUS  = "update.status";
  35. const FILE_UPDATE_ARCHIVE = "update.mar";
  36. const FILE_UPDATE_LOG     = "update.log"
  37. const FILE_UPDATES_DB     = "updates.xml";
  38. const FILE_UPDATE_ACTIVE  = "active-update.xml";
  39. const FILE_PERMS_TEST     = "update.test";
  40. const FILE_LAST_LOG       = "last-update.log";
  41.  
  42. const MODE_RDONLY   = 0x01;
  43. const MODE_WRONLY   = 0x02;
  44. const MODE_CREATE   = 0x08;
  45. const MODE_APPEND   = 0x10;
  46. const MODE_TRUNCATE = 0x20;
  47.  
  48. const PERMS_FILE      = 0644;
  49. const PERMS_DIRECTORY = 0755;
  50.  
  51. const STATE_NONE            = "null";
  52. const STATE_DOWNLOADING     = "downloading";
  53. const STATE_PENDING         = "pending";
  54. const STATE_APPLYING        = "applying";
  55. const STATE_SUCCEEDED       = "succeeded";
  56. const STATE_DOWNLOAD_FAILED = "download-failed";
  57. const STATE_FAILED          = "failed";
  58.  
  59. // From updater/errors.h:
  60. const WRITE_ERROR = 7;
  61.  
  62. const DOWNLOAD_CHUNK_SIZE           = 300000; // bytes
  63. const DOWNLOAD_BACKGROUND_INTERVAL  = 600;    // seconds
  64. const DOWNLOAD_FOREGROUND_INTERVAL  = 0;
  65.  
  66. const POST_UPDATE_CONTRACTID = "@mozilla.org/updates/post-update;1";
  67.  
  68. const nsIExtensionManager     = Components.interfaces.nsIExtensionManager;
  69. const nsILocalFile            = Components.interfaces.nsILocalFile;
  70. const nsIUpdateService        = Components.interfaces.nsIUpdateService;
  71. const nsIUpdateItem           = Components.interfaces.nsIUpdateItem;
  72. const nsIPrefLocalizedString  = Components.interfaces.nsIPrefLocalizedString;
  73. const nsIIncrementalDownload  = Components.interfaces.nsIIncrementalDownload;
  74. const nsIFileInputStream      = Components.interfaces.nsIFileInputStream;
  75. const nsIFileOutputStream     = Components.interfaces.nsIFileOutputStream;
  76. const nsICryptoHash           = Components.interfaces.nsICryptoHash;
  77.  
  78. const Node = Components.interfaces.nsIDOMNode;
  79.  
  80. var gApp        = null;
  81. var gPref       = null;
  82. var gABI        = null;
  83. var gOSVersion  = null;
  84. var gConsole    = null;
  85. var gLogEnabled = { };
  86.  
  87. // shared code for suppressing bad cert dialogs
  88. //@line 40 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/shared/src/badCertHandler.js"
  89.  
  90. /**
  91.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  92.  */
  93. function checkCert(channel) {
  94.   if (!channel.originalURI.schemeIs("https"))  // bypass
  95.     return;
  96.  
  97.   const Ci = Components.interfaces;  
  98.   var cert =
  99.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  100.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  101.  
  102.   var issuer = cert.issuer;
  103.   while (issuer && !cert.equals(issuer)) {
  104.     cert = issuer;
  105.     issuer = cert.issuer;
  106.   }
  107.  
  108.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  109.     throw "cert issuer is not built-in";
  110. }
  111.  
  112. /**
  113.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  114.  * security dialogs from being shown to the user.  It is better to simply fail
  115.  * if the certificate is bad. See bug 304286.
  116.  */
  117. function BadCertHandler() {
  118. }
  119. BadCertHandler.prototype = {
  120.  
  121.   // nsIBadCertListener
  122.   confirmUnknownIssuer: function(socketInfo, cert, certAddType) {
  123.     LOG("EM BadCertHandler: Unknown issuer");
  124.     return false;
  125.   },
  126.  
  127.   confirmMismatchDomain: function(socketInfo, targetURL, cert) {
  128.     LOG("EM BadCertHandler: Mismatched domain");
  129.     return false;
  130.   },
  131.  
  132.   confirmCertExpired: function(socketInfo, cert) {
  133.     LOG("EM BadCertHandler: Expired certificate");
  134.     return false;
  135.   },
  136.  
  137.   notifyCrlNextupdate: function(socketInfo, targetURL, cert) {
  138.   },
  139.  
  140.   // nsIChannelEventSink
  141.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  142.     // make sure the certificate of the old channel checks out before we follow
  143.     // a redirect from it.  See bug 340198.
  144.     checkCert(oldChannel);
  145.   },
  146.  
  147.   // nsIInterfaceRequestor
  148.   getInterface: function(iid) {
  149.     return this.QueryInterface(iid);
  150.   },
  151.  
  152.   // nsISupports
  153.   QueryInterface: function(iid) {
  154.     if (!iid.equals(Components.interfaces.nsIBadCertListener) &&
  155.         !iid.equals(Components.interfaces.nsIChannelEventSink) &&
  156.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  157.         !iid.equals(Components.interfaces.nsISupports))
  158.       throw Components.results.NS_ERROR_NO_INTERFACE;
  159.     return this;
  160.   }
  161. };
  162. //@line 129 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  163.  
  164. /**
  165.  * Logs a string to the error console. 
  166.  * @param   string
  167.  *          The string to write to the error console..
  168.  */  
  169. function LOG(module, string) {
  170.   if (module in gLogEnabled || "all" in gLogEnabled) {
  171.     dump("*** " + module + ": " + string + "\n");
  172.     gConsole.logStringMessage(string);
  173.   }
  174. }
  175.  
  176. /**
  177.  * Convert a string containing binary values to hex.
  178.  */
  179. function binaryToHex(input) {
  180.   var result = "";
  181.   for (var i = 0; i < input.length; ++i) {
  182.     var hex = input.charCodeAt(i).toString(16);
  183.     if (hex.length == 1)
  184.       hex = "0" + hex;
  185.     result += hex;
  186.   }
  187.   return result;
  188. }
  189.  
  190. /**
  191.  * Gets a File URL spec for a nsIFile
  192.  * @param   file
  193.  *          The file to get a file URL spec to
  194.  * @returns The file URL spec to the file
  195.  */
  196. function getURLSpecFromFile(file) {
  197.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  198.                          .getService(Components.interfaces.nsIIOService);
  199.   var fph = ioServ.getProtocolHandler("file")
  200.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  201.   return fph.getURLSpecFromFile(file);
  202. }
  203.  
  204. /**
  205.  * Gets the specified directory at the specified hierarchy under a 
  206.  * Directory Service key. 
  207.  * @param   key
  208.  *          The Directory Service Key to start from
  209.  * @param   pathArray
  210.  *          An array of path components to locate beneath the directory 
  211.  *          specified by |key|
  212.  * @return  nsIFile object for the location specified. If the directory
  213.  *          requested does not exist, it is created, along with any
  214.  *          parent directories that need to be created.
  215.  */
  216. function getDir(key, pathArray) {
  217.   return getDirInternal(key, pathArray, true, false);
  218. }
  219.  
  220. /**
  221.  * Gets the specified directory at the specified hierarchy under a 
  222.  * Directory Service key. 
  223.  * @param   key
  224.  *          The Directory Service Key to start from
  225.  * @param   pathArray
  226.  *          An array of path components to locate beneath the directory 
  227.  *          specified by |key|
  228.  * @return  nsIFile object for the location specified. If the directory
  229.  *          requested does not exist, it is NOT created.
  230.  */
  231. function getDirNoCreate(key, pathArray) {
  232.   return getDirInternal(key, pathArray, false, false);
  233. }
  234.  
  235. /**
  236.  * Gets the specified directory at the specified hierarchy under the 
  237.  * update root directory.
  238.  * @param   pathArray
  239.  *          An array of path components to locate beneath the directory 
  240.  *          specified by |key|
  241.  * @return  nsIFile object for the location specified. If the directory
  242.  *          requested does not exist, it is created, along with any
  243.  *          parent directories that need to be created.
  244.  */
  245. function getUpdateDir(pathArray) {
  246.   return getDirInternal(KEY_APPDIR, pathArray, true, true);
  247. }
  248.  
  249. /**
  250.  * Gets the specified directory at the specified hierarchy under a 
  251.  * Directory Service key. 
  252.  * @param   key
  253.  *          The Directory Service Key to start from
  254.  * @param   pathArray
  255.  *          An array of path components to locate beneath the directory 
  256.  *          specified by |key|
  257.  * @param   shouldCreate
  258.  *          true if the directory hierarchy specified in |pathArray|
  259.  *          should be created if it does not exist,
  260.  *          false otherwise.
  261.  * @param   update
  262.  *          true if finding the update directory,
  263.  *          false otherwise.
  264.  * @return  nsIFile object for the location specified. 
  265.  */
  266. function getDirInternal(key, pathArray, shouldCreate, update) {
  267.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  268.                               .getService(Components.interfaces.nsIProperties);
  269.   var dir = fileLocator.get(key, Components.interfaces.nsIFile);
  270. //@line 237 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  271.   if (update) {
  272.     try {
  273.       dir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  274.     } catch (e) {
  275.     }
  276.   }
  277. //@line 244 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  278.   for (var i = 0; i < pathArray.length; ++i) {
  279.     dir.append(pathArray[i]);
  280.     if (shouldCreate && !dir.exists())
  281.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  282.   }
  283.   return dir;
  284. }
  285.  
  286. /**
  287.  * Gets the file at the specified hierarchy under a Directory Service key.
  288.  * @param   key
  289.  *          The Directory Service Key to start from
  290.  * @param   pathArray
  291.  *          An array of path components to locate beneath the directory 
  292.  *          specified by |key|. The last item in this array must be the
  293.  *          leaf name of a file.
  294.  * @return  nsIFile object for the file specified. The file is NOT created
  295.  *          if it does not exist, however all required directories along 
  296.  *          the way are.
  297.  */
  298. function getFile(key, pathArray) {
  299.   var file = getDir(key, pathArray.slice(0, -1));
  300.   file.append(pathArray[pathArray.length - 1]);
  301.   return file;
  302. }
  303.  
  304. /**
  305.  * Gets the file at the specified hierarchy under the update root directory.
  306.  * @param   pathArray
  307.  *          An array of path components to locate beneath the directory 
  308.  *          specified by |key|. The last item in this array must be the
  309.  *          leaf name of a file.
  310.  * @return  nsIFile object for the file specified. The file is NOT created
  311.  *          if it does not exist, however all required directories along 
  312.  *          the way are.
  313.  */
  314. function getUpdateFile(pathArray) {
  315.   var file = getUpdateDir(pathArray.slice(0, -1));
  316.   file.append(pathArray[pathArray.length - 1]);
  317.   return file;
  318. }
  319.  
  320. /**
  321.  * Closes a Safe Output Stream
  322.  * @param   fos
  323.  *          The Safe Output Stream to close
  324.  */
  325. function closeSafeOutputStream(fos) {
  326.   if (fos instanceof Components.interfaces.nsISafeOutputStream) {
  327.     try {
  328.       fos.finish();
  329.     }
  330.     catch (e) {
  331.       fos.close();
  332.     }
  333.   }
  334.   else
  335.     fos.close();
  336. }
  337.  
  338. /**
  339.  * Returns human readable status text from the updates.properties bundle
  340.  * based on an error code
  341.  * @param   code
  342.  *          The error code to look up human readable status text for
  343.  * @param   defaultCode
  344.  *          The default code to look up should human readable status text
  345.  *          not exist for |code|
  346.  * @returns A human readable status text string
  347.  */
  348. function getStatusTextFromCode(code, defaultCode) {
  349.   var sbs = 
  350.       Components.classes["@mozilla.org/intl/stringbundle;1"].
  351.       getService(Components.interfaces.nsIStringBundleService);
  352.   var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  353.   var reason = updateBundle.GetStringFromName("checker_error-" + defaultCode);
  354.   try {
  355.     reason = updateBundle.GetStringFromName("checker_error-" + code);
  356.     LOG("General", "Transfer Error: " + reason + ", code: " + code);
  357.   }
  358.   catch (e) {
  359.     // Use the default reason
  360.     LOG("General", "Transfer Error: " + reason + ", code: " + defaultCode);
  361.   }
  362.   return reason;
  363. }
  364.  
  365. /**
  366.  * Get the Active Updates directory
  367.  * @param   key
  368.  *          The Directory Service Key (optional).
  369.  *          If used, don't search local appdata on Win32 and don't create dir.
  370.  * @returns The active updates directory, as a nsIFile object
  371.  */
  372. function getUpdatesDir(key) {
  373.   // Right now, we only support downloading one patch at a time, so we always
  374.   // use the same target directory.
  375.   var fileLocator =
  376.       Components.classes["@mozilla.org/file/directory_service;1"].
  377.       getService(Components.interfaces.nsIProperties);
  378.   var appDir;
  379.   if (key)
  380.     appDir = fileLocator.get(key, Components.interfaces.nsIFile);
  381.   else {
  382.     appDir = fileLocator.get(KEY_APPDIR, Components.interfaces.nsIFile);
  383. //@line 350 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  384.     try {
  385.       appDir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  386.     } catch (e) {
  387.     }
  388. //@line 355 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  389.   }
  390.   appDir.append(DIR_UPDATES);
  391.   appDir.append("0");
  392.   if (!appDir.exists() && !key)
  393.     appDir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  394.   return appDir;
  395. }
  396.  
  397. /**
  398.  * Reads the update state from the update.status file in the specified
  399.  * directory.
  400.  * @param   dir
  401.  *          The dir to look for an update.status file in
  402.  * @returns The status value of the update.
  403.  */
  404. function readStatusFile(dir) {
  405.   var statusFile = dir.clone();
  406.   statusFile.append(FILE_UPDATE_STATUS);
  407.   LOG("General", "Reading Status File: " + statusFile.path);
  408.   return readStringFromFile(statusFile) || STATE_NONE;
  409. }
  410.  
  411. /**
  412.  * Writes the current update operation/state to a file in the patch 
  413.  * directory, indicating to the patching system that operations need
  414.  * to be performed.
  415.  * @param   dir
  416.  *          The patch directory where the update.status file should be 
  417.  *          written.
  418.  * @param   state
  419.  *          The state value to write.
  420.  */
  421. function writeStatusFile(dir, state) {
  422.   var statusFile = dir.clone();
  423.   statusFile.append(FILE_UPDATE_STATUS);
  424.   writeStringToFile(statusFile, state);
  425. }
  426.  
  427. /**
  428.  * Removes the Updates Directory
  429.  * @param   key
  430.  *          The Directory Service Key under which update directory resides
  431.  *          (optional).
  432.  */
  433. function cleanUpUpdatesDir(key) {
  434.   // Bail out if we don't have appropriate permissions
  435.   var updateDir;
  436.   try {
  437.     updateDir = getUpdatesDir(key);
  438.   }
  439.   catch (e) {
  440.     return;
  441.   }
  442.  
  443.   var e = updateDir.directoryEntries;
  444.   while (e.hasMoreElements()) {
  445.     var f = e.getNext().QueryInterface(Components.interfaces.nsIFile);
  446.     // Preserve the last update log file for debugging purposes
  447.     if (f.leafName == FILE_UPDATE_LOG) {
  448.       try {
  449.         var dir = f.parent.parent;
  450.         var logFile = dir.clone();
  451.         logFile.append(FILE_LAST_LOG);
  452.         if (logFile.exists())
  453.           logFile.remove(false);
  454.         f.copyTo(dir, FILE_LAST_LOG);
  455.       }
  456.       catch (e) {
  457.         LOG("General", "Failed to copy file: " + f.path);
  458.       }
  459.     }
  460.     // Now, recursively remove this file.  The recusive removal is really
  461.     // only needed on Mac OSX because this directory will contain a copy of
  462.     // updater.app, which is itself a directory.
  463.     try {
  464.       f.remove(true);
  465.     }
  466.     catch (e) {
  467.       LOG("General", "Failed to remove file: " + f.path);
  468.     }
  469.   }
  470.   try {
  471.     updateDir.remove(false);
  472.   } catch (e) {
  473.     LOG("General", "Failed to remove update directory: " + updateDir.path + 
  474.         " - This is almost always bad. Exception = " + e);
  475.     throw e;
  476.   }
  477. }
  478.  
  479. /**
  480.  * Clean up updates list and the updates directory.
  481.  * @param   key
  482.  *          The Directory Service Key under which update directory resides
  483.  *          (optional).
  484.  */
  485. function cleanupActiveUpdate(key) {
  486.   // Move the update from the Active Update list into the Past Updates list.
  487.   var um = 
  488.       Components.classes["@mozilla.org/updates/update-manager;1"].
  489.       getService(Components.interfaces.nsIUpdateManager);
  490.   um.activeUpdate = null;
  491.   um.saveUpdates();
  492.  
  493.   // Now trash the updates directory, since we're done with it
  494.   cleanUpUpdatesDir(key);
  495. }
  496.  
  497. /**
  498.  * Gets a preference value, handling the case where there is no default.
  499.  * @param   func
  500.  *          The name of the preference function to call, on nsIPrefBranch
  501.  * @param   preference
  502.  *          The name of the preference
  503.  * @param   defaultValue
  504.  *          The default value to return in the event the preference has 
  505.  *          no setting
  506.  * @returns The value of the preference, or undefined if there was no
  507.  *          user or default value.
  508.  */
  509. function getPref(func, preference, defaultValue) {
  510.   try {
  511.     return gPref[func](preference);
  512.   }
  513.   catch (e) {
  514.   }
  515.   return defaultValue;
  516. }
  517.  
  518. /**
  519.  * Gets the current value of the locale.  It's possible for this preference to
  520.  * be localized, so we have to do a little extra work here.  Similar code
  521.  * exists in nsHttpHandler.cpp when building the UA string.
  522.  */
  523. function getLocale() {
  524.   try {
  525.       // Get the default branch
  526.       var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  527.           .getService(Components.interfaces.nsIPrefService);
  528.       var defaultPrefs = prefs.getDefaultBranch(null);
  529.       return defaultPrefs.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  530.   } catch (e) {}
  531.  
  532.   return gPref.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  533. }
  534.  
  535. /**
  536.  * Read the update channel from defaults only.  We do this to ensure that
  537.  * the channel is tightly coupled with the application and does not apply
  538.  * to other instances of the application that may use the same profile.
  539.  */
  540. function getUpdateChannel() {
  541.   var channel = "default";
  542.   var prefName;
  543.   var prefValue;
  544.  
  545.   var defaults =
  546.       gPref.QueryInterface(Components.interfaces.nsIPrefService).
  547.       getDefaultBranch(null);
  548.   try {
  549.     channel = defaults.getCharPref(PREF_APP_UPDATE_CHANNEL);
  550.   } catch (e) {
  551.     // use default when pref not found
  552.   }
  553.  
  554.   try {
  555.     var partners = gPref.getChildList(PREF_PARTNER_BRANCH, { });
  556.     if (partners.length) {
  557.       channel += "-cck";
  558.       partners.sort();
  559.  
  560.       for each (prefName in partners) {
  561.         prefValue = gPref.getCharPref(prefName);
  562.         channel += "-" + prefValue;
  563.       }
  564.     }
  565.   }
  566.   catch (e) {
  567.     Components.utils.reportError(e);
  568.   }
  569.  
  570.   return channel;
  571. }
  572.  
  573. /**
  574.  * An enumeration of items in a JS array.
  575.  * @constructor
  576.  */
  577. function ArrayEnumerator(aItems) {
  578.   this._index = 0;
  579.   if (aItems) {
  580.     for (var i = 0; i < aItems.length; ++i) {
  581.       if (!aItems[i])
  582.         aItems.splice(i, 1);      
  583.     }
  584.   }
  585.   this._contents = aItems;
  586. }
  587.  
  588. ArrayEnumerator.prototype = {
  589.   _index: 0,
  590.   _contents: [],
  591.   
  592.   hasMoreElements: function() {
  593.     return this._index < this._contents.length;
  594.   },
  595.   
  596.   getNext: function() {
  597.     return this._contents[this._index++];      
  598.   }
  599. };
  600.  
  601. /**
  602.  * Trims a prefix from a string.
  603.  * @param   string
  604.  *          The source string
  605.  * @param   prefix
  606.  *          The prefix to remove.
  607.  * @returns The suffix (string - prefix)
  608.  */
  609. function stripPrefix(string, prefix) {
  610.   return string.substr(prefix.length);
  611. }
  612.  
  613. /**
  614.  * Writes a string of text to a file.  A newline will be appended to the data
  615.  * written to the file.  This function only works with ASCII text.
  616.  */
  617. function writeStringToFile(file, text) {
  618.   var fos =
  619.       Components.classes["@mozilla.org/network/safe-file-output-stream;1"].
  620.       createInstance(nsIFileOutputStream);
  621.   var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  622.   if (!file.exists()) 
  623.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  624.   fos.init(file, modeFlags, PERMS_FILE, 0);
  625.   text += "\n";
  626.   fos.write(text, text.length);    
  627.   closeSafeOutputStream(fos);
  628. }
  629.  
  630. /**
  631.  * Reads a string of text from a file.  A trailing newline will be removed
  632.  * before the result is returned.  This function only works with ASCII text.
  633.  */
  634. function readStringFromFile(file) {
  635.   var fis =
  636.       Components.classes["@mozilla.org/network/file-input-stream;1"].
  637.       createInstance(nsIFileInputStream);
  638.   var modeFlags = MODE_RDONLY;
  639.   if (!file.exists())
  640.     return null;
  641.   fis.init(file, modeFlags, PERMS_FILE, 0);
  642.   var sis =
  643.       Components.classes["@mozilla.org/scriptableinputstream;1"].
  644.       createInstance(Components.interfaces.nsIScriptableInputStream);
  645.   sis.init(fis);
  646.   var text = sis.read(sis.available());
  647.   sis.close();
  648.   if (text[text.length - 1] == "\n")
  649.     text = text.slice(0, -1);
  650.   return text;
  651. }
  652.  
  653. function getObserverService()
  654. {
  655.   return Components.classes["@mozilla.org/observer-service;1"]
  656.                    .getService(Components.interfaces.nsIObserverService);
  657. }
  658.  
  659. /**
  660.  * Update Patch
  661.  * @param   patch
  662.  *          A <patch> element to initialize this object with
  663.  * @throws if patch has a size of 0
  664.  * @constructor
  665.  */
  666. function UpdatePatch(patch) {
  667.   this._properties = {};
  668.   for (var i = 0; i < patch.attributes.length; ++i) {
  669.     var attr = patch.attributes.item(i);
  670.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  671.     switch (attr.name) {
  672.     case "selected":
  673.       this.selected = attr.value == "true";
  674.       break;
  675.     case "size":
  676.       if (0 == parseInt(attr.value)) {
  677.         LOG("UpdatePatch", "0-sized patch!");
  678.         throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  679.       }
  680.       // fall through
  681.     default:
  682.       this[attr.name] = attr.value;
  683.       break;
  684.     };
  685.   }
  686. }
  687. UpdatePatch.prototype = {
  688.   /**
  689.    * See nsIUpdateService.idl
  690.    */
  691.   serialize: function(updates) {
  692.     var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
  693.     patch.setAttribute("type", this.type);
  694.     patch.setAttribute("URL", this.URL);
  695.     patch.setAttribute("hashFunction", this.hashFunction);
  696.     patch.setAttribute("hashValue", this.hashValue);
  697.     patch.setAttribute("size", this.size);
  698.     patch.setAttribute("selected", this.selected);
  699.     patch.setAttribute("state", this.state);
  700.     
  701.     for (var p in this._properties) {
  702.       if (this._properties[p].present)
  703.         patch.setAttribute(p, this._properties[p].data);
  704.     }
  705.     
  706.     return patch; 
  707.   },
  708.   
  709.   /**
  710.    * A hash of custom properties
  711.    */
  712.   _properties: null,
  713.   
  714.   /**
  715.    * See nsIWritablePropertyBag.idl
  716.    */
  717.   setProperty: function(name, value) {
  718.     this._properties[name] = { data: value, present: true };
  719.   },
  720.   
  721.   /**
  722.    * See nsIWritablePropertyBag.idl
  723.    */
  724.   deleteProperty: function(name) {
  725.     if (name in this._properties)
  726.       this._properties[name].present = false;
  727.     else
  728.       throw Components.results.NS_ERROR_FAILURE;
  729.   },
  730.   
  731.   /**
  732.    * See nsIPropertyBag.idl
  733.    */
  734.   get enumerator() {
  735.     var properties = [];
  736.     for (var p in this._properties)
  737.       properties.push(this._properties[p].data);
  738.     return new ArrayEnumerator(properties);
  739.   },
  740.   
  741.   /**
  742.    * See nsIPropertyBag.idl
  743.    */
  744.   getProperty: function(name) {
  745.     if (name in this._properties &&
  746.         this._properties[name].present)
  747.       return this._properties[name].data;
  748.     throw Components.results.NS_ERROR_FAILURE;
  749.   },
  750.   
  751.   /**
  752.    * Returns whether or not the update.status file for this patch exists at the 
  753.    * appropriate location. 
  754.    */
  755.   get statusFileExists() {
  756.     var statusFile = getUpdatesDir();
  757.     statusFile.append(FILE_UPDATE_STATUS);
  758.     return statusFile.exists();
  759.   },
  760.   
  761.   /**
  762.    * See nsIUpdateService.idl
  763.    */
  764.   get state() {
  765.     if (!this.statusFileExists)
  766.       return STATE_NONE;
  767.     return this._properties.state;
  768.   },
  769.   set state(val) {
  770.     this._properties.state = val;
  771.   },
  772.   
  773.   /**
  774.    * See nsISupports.idl
  775.    */
  776.   QueryInterface: function(iid) {
  777.     if (!iid.equals(Components.interfaces.nsIUpdatePatch) &&
  778.         !iid.equals(Components.interfaces.nsIPropertyBag) && 
  779.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) && 
  780.         !iid.equals(Components.interfaces.nsISupports))
  781.       throw Components.results.NS_ERROR_NO_INTERFACE;
  782.     return this;
  783.   }
  784. };
  785.  
  786. /**
  787.  * Update
  788.  * Implements nsIUpdate
  789.  * @param   update
  790.  *          An <update> element to initialize this object with
  791.  * @throws if the update contains no patches
  792.  * @constructor
  793.  */
  794. function Update(update) {
  795.   this._properties = {};
  796.   this._patches = [];
  797.   this.installDate = 0;
  798.   this.isCompleteUpdate = false;
  799.   this.channel = "default"
  800.  
  801.   // Null <update>, assume this is a message container and do no 
  802.   // further initialization
  803.   if (!update)
  804.     return;
  805.     
  806.   for (var i = 0; i < update.childNodes.length; ++i) {
  807.     var patchElement = update.childNodes.item(i);
  808.     if (patchElement.nodeType != Node.ELEMENT_NODE ||
  809.         patchElement.localName != "patch")
  810.       continue;
  811.  
  812.     patchElement.QueryInterface(Components.interfaces.nsIDOMElement);
  813.     try {
  814.       var patch = new UpdatePatch(patchElement);
  815.     } catch (e) {
  816.       continue;
  817.     }
  818.     this._patches.push(patch);
  819.   }
  820.   
  821.   if (0 == this._patches.length)
  822.     throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  823.  
  824.   for (var i = 0; i < update.attributes.length; ++i) {
  825.     var attr = update.attributes.item(i);
  826.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  827.     if (attr.name == "installDate" && attr.value) 
  828.       this.installDate = parseInt(attr.value);
  829.     else if (attr.name == "isCompleteUpdate")
  830.       this.isCompleteUpdate = attr.value == "true";
  831.     else if (attr.name == "isSecurityUpdate")
  832.       this.isSecurityUpdate = attr.value == "true";
  833.     else if (attr.name == "detailsURL")
  834.       this._detailsURL = attr.value;
  835.     else if (attr.name == "channel")
  836.       this.channel = attr.value;
  837.     else
  838.       this[attr.name] = attr.value;
  839.   }
  840.   
  841.   // The Update Name is either the string provided by the <update> element, or
  842.   // the string: "<App Name> <Update App Version>"
  843.   var name = "";
  844.   if (update.hasAttribute("name"))
  845.     name = update.getAttribute("name");
  846.   else {
  847.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  848.                         .getService(Components.interfaces.nsIStringBundleService);
  849.     var brandBundle = sbs.createBundle(URI_BRAND_PROPERTIES);
  850.     var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  851.     var appName = brandBundle.GetStringFromName("brandShortName");
  852.     name = updateBundle.formatStringFromName("updateName", 
  853.                                              [appName, this.version], 2);
  854.   }
  855.   this.name = name;
  856. }
  857. Update.prototype = {
  858.   /**
  859.    * See nsIUpdateService.idl
  860.    */
  861.   get patchCount() {
  862.     return this._patches.length;
  863.   },
  864.   
  865.   /**
  866.    * See nsIUpdateService.idl
  867.    */
  868.   getPatchAt: function(index) {
  869.     return this._patches[index];
  870.   },
  871.  
  872.   /**
  873.    * See nsIUpdateService.idl
  874.    * 
  875.    * We use a copy of the state cached on this object in |_state| only when 
  876.    * there is no selected patch, i.e. in the case when we could not load 
  877.    * |.activeUpdate| from the update manager for some reason but still have
  878.    * the update.status file to work with. 
  879.    */
  880.   _state: "",
  881.   set state(state) {
  882.     if (this.selectedPatch)
  883.       this.selectedPatch.state = state;
  884.     this._state = state;
  885.     return state;
  886.   },
  887.   get state() {
  888.     if (this.selectedPatch)
  889.       return this.selectedPatch.state;
  890.     return this._state;
  891.   },
  892.  
  893.   /**
  894.    * See nsIUpdateService.idl
  895.    */
  896.   errorCode: 0,
  897.     
  898.   /**
  899.    * See nsIUpdateService.idl
  900.    */
  901.   get selectedPatch() {
  902.     for (var i = 0; i < this.patchCount; ++i) {
  903.       if (this._patches[i].selected)
  904.         return this._patches[i];
  905.     }
  906.     return null;
  907.   },
  908.   
  909.   /**
  910.    * See nsIUpdateService.idl
  911.    */
  912.   get detailsURL() {
  913.     if (!this._detailsURL) {
  914.       try {
  915.         // Try using a default details URL supplied by the distribution
  916.         // if the update XML does not supply one.
  917.         var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
  918.                                   .getService(Components.interfaces.nsIURLFormatter);
  919.         return formatter.formatURLPref(PREF_APP_UPDATE_URL_DETAILS);
  920.       }
  921.       catch (e) {
  922.       }
  923.     }
  924.     return this._detailsURL || "";
  925.   },
  926.   
  927.   /**
  928.    * See nsIUpdateService.idl
  929.    */
  930.   serialize: function(updates) {
  931.     var update = updates.createElementNS(URI_UPDATE_NS, "update");
  932.     update.setAttribute("type", this.type);
  933.     update.setAttribute("name", this.name);
  934.     update.setAttribute("version", this.version);
  935.     update.setAttribute("extensionVersion", this.extensionVersion);
  936.     update.setAttribute("detailsURL", this.detailsURL);
  937.     update.setAttribute("licenseURL", this.licenseURL);
  938.     update.setAttribute("serviceURL", this.serviceURL);
  939.     update.setAttribute("installDate", this.installDate);
  940.     update.setAttribute("statusText", this.statusText);
  941.     update.setAttribute("buildID", this.buildID);
  942.     update.setAttribute("isCompleteUpdate", this.isCompleteUpdate);
  943.     update.setAttribute("channel", this.channel);
  944.     updates.documentElement.appendChild(update);
  945.     
  946.     for (var p in this._properties) {
  947.       if (this._properties[p].present)
  948.         update.setAttribute(p, this._properties[p].data);
  949.     }
  950.     
  951.     for (var i = 0; i < this.patchCount; ++i)
  952.       update.appendChild(this.getPatchAt(i).serialize(updates));
  953.     
  954.     return update;
  955.   },
  956.    
  957.   /**
  958.    * A hash of custom properties
  959.    */
  960.   _properties: null,
  961.   
  962.   /**
  963.    * See nsIWritablePropertyBag.idl
  964.    */
  965.   setProperty: function(name, value) {
  966.     this._properties[name] = { data: value, present: true };
  967.   },
  968.   
  969.   /**
  970.    * See nsIWritablePropertyBag.idl
  971.    */
  972.   deleteProperty: function(name) {
  973.     if (name in this._properties)
  974.       this._properties[name].present = false;
  975.     else
  976.       throw Components.results.NS_ERROR_FAILURE;
  977.   },
  978.   
  979.   /**
  980.    * See nsIPropertyBag.idl
  981.    */
  982.   get enumerator() {
  983.     var properties = [];
  984.     for (var p in this._properties)
  985.       properties.push(this._properties[p].data);
  986.     return new ArrayEnumerator(properties);
  987.   },
  988.   
  989.   /**
  990.    * See nsIPropertyBag.idl
  991.    */
  992.   getProperty: function(name) {
  993.     if (name in this._properties &&
  994.         this._properties[name].present)
  995.       return this._properties[name].data;
  996.     throw Components.results.NS_ERROR_FAILURE;
  997.   },
  998.   
  999.   /**
  1000.    * See nsISupports.idl
  1001.    */
  1002.   QueryInterface: function(iid) {
  1003.     if (!iid.equals(Components.interfaces.nsIUpdate) &&
  1004.         !iid.equals(Components.interfaces.nsIPropertyBag) &&
  1005.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) &&
  1006.         !iid.equals(Components.interfaces.nsISupports))
  1007.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1008.     return this;
  1009.   }
  1010. }; 
  1011.  
  1012. /**
  1013.  * UpdateService
  1014.  * A Service for managing the discovery and installation of software updates.
  1015.  * @constructor
  1016.  */
  1017. function UpdateService() {
  1018.   gApp  = Components.classes["@mozilla.org/xre/app-info;1"]
  1019.                     .getService(Components.interfaces.nsIXULAppInfo)
  1020.                     .QueryInterface(Components.interfaces.nsIXULRuntime);
  1021.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  1022.                     .getService(Components.interfaces.nsIPrefBranch2);
  1023.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  1024.                        .getService(Components.interfaces.nsIConsoleService);  
  1025.  
  1026.   // Not all builds have a known ABI
  1027.   try {
  1028.     gABI = gApp.XPCOMABI;
  1029.   }
  1030.   catch (e) {
  1031.     LOG("UpdateService", "XPCOM ABI unknown: updates are not possible.");
  1032.   }
  1033.  
  1034.   try {
  1035.     var sysInfo = 
  1036.       Components.classes["@mozilla.org/system-info;1"]
  1037.                 .getService(Components.interfaces.nsIPropertyBag2);
  1038.  
  1039.     gOSVersion = encodeURIComponent(sysInfo.getProperty("name") + " " +  
  1040.                                     sysInfo.getProperty("version"));
  1041.   }
  1042.   catch (e) {
  1043.     LOG("UpdateService", "OS Version unknown: updates are not possible.");
  1044.   }
  1045.  
  1046. //@line 1021 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1047.  
  1048.   // Start the update timer only after a profile has been selected so that the
  1049.   // appropriate values for the update check are read from the user's profile.  
  1050.   var os = getObserverService();
  1051.  
  1052.   os.addObserver(this, "profile-after-change", false);
  1053.  
  1054.   // Observe xpcom-shutdown to unhook pref branch observers above to avoid 
  1055.   // shutdown leaks.
  1056.   os.addObserver(this, "xpcom-shutdown", false);
  1057. }
  1058.  
  1059. UpdateService.prototype = {
  1060.   /**
  1061.    * The downloader we are using to download updates. There is only ever one of
  1062.    * these.
  1063.    */
  1064.   _downloader: null,
  1065.  
  1066.   /**
  1067.    * Handle Observer Service notifications
  1068.    * @param   subject
  1069.    *          The subject of the notification
  1070.    * @param   topic
  1071.    *          The notification name
  1072.    * @param   data
  1073.    *          Additional data
  1074.    */
  1075.   observe: function(subject, topic, data) {
  1076.     var os = getObserverService();
  1077.  
  1078.     switch (topic) {
  1079.     case "profile-after-change":
  1080.       os.removeObserver(this, "profile-after-change");
  1081.       this._start();
  1082.       break;
  1083.     case "xpcom-shutdown":
  1084.       os.removeObserver(this, "xpcom-shutdown");
  1085.       
  1086.       // Release Services
  1087.       gApp      = null;
  1088.       gPref     = null;
  1089.       gConsole  = null;
  1090.       break;
  1091.     }
  1092.   },
  1093.   
  1094.   /**
  1095.    * Start the Update Service
  1096.    */
  1097.   _start: function() {
  1098.     // Start logging
  1099.     this._initLoggingPrefs();
  1100.     
  1101.     // Clean up any extant updates
  1102.     this._postUpdateProcessing();
  1103.  
  1104.     // Register a background update check timer
  1105.     var tm = 
  1106.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  1107.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  1108.     var interval = getPref("getIntPref", PREF_APP_UPDATE_INTERVAL, 86400);
  1109.     tm.registerTimer("background-update-timer", this, interval);
  1110.  
  1111.     // Resume fetching...
  1112.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1113.                         .getService(Components.interfaces.nsIUpdateManager);
  1114.     var activeUpdate = um.activeUpdate;
  1115.     if (activeUpdate) {
  1116.       var status = this.downloadUpdate(activeUpdate, true);
  1117.       if (status == STATE_NONE)
  1118.         cleanupActiveUpdate();
  1119.     }
  1120.   },
  1121.   
  1122.   /**
  1123.    * Perform post-processing on updates lingering in the updates directory
  1124.    * from a previous browser session - either report install failures (and
  1125.    * optionally attempt to fetch a different version if appropriate) or 
  1126.    * notify the user of install success.
  1127.    */
  1128.   _postUpdateProcessing: function() {
  1129.     // Detect installation failures and notify
  1130.     
  1131.     // Bail out if we don't have appropriate permissions
  1132.     if (!this.canUpdate)
  1133.       return;
  1134.       
  1135.     var status = readStatusFile(getUpdatesDir()); 
  1136.  
  1137.     // Make sure to cleanup after an update that failed for an unknown reason
  1138.     if (status == "null")
  1139.       status = null;
  1140.  
  1141.     var updRootKey = null;
  1142. //@line 1117 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1143.     function findPreviousUpdate(key) {
  1144.       var updateDir = getUpdatesDir(key);
  1145.       if (updateDir.exists()) {
  1146.         status = readStatusFile(updateDir);
  1147.         // Previous download should succeed. Otherwise, we will not be here!
  1148.         if (status == STATE_SUCCEEDED)
  1149.           updRootKey = key;
  1150.         else
  1151.           status = null;
  1152.       }
  1153.     }
  1154.  
  1155.     // required when updating from Fx 2.0.0.1 to 2.0.0.3 (or later)
  1156.     // on Windows Vista.
  1157.     if (status == null)
  1158.       findPreviousUpdate(KEY_UAPPDATA);
  1159.  
  1160.     // required to migrate from older versions.
  1161.     if (status == null)
  1162.       findPreviousUpdate(KEY_APPDIR);
  1163. //@line 1138 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1164.  
  1165.     if (status == STATE_DOWNLOADING) {
  1166.       LOG("UpdateService", "_postUpdateProcessing: Downloading patch, resuming...");
  1167.     }
  1168.     else if (status != null) {
  1169.       // null status means the update.status file is not present, because either:
  1170.       // 1) no update was performed, and so there's no UI to show
  1171.       // 2) an update was attempted but failed during checking, transfer or 
  1172.       //    verification, and was cleaned up at that point, and UI notifying of
  1173.       //    that error was shown at that stage. 
  1174.       var um = 
  1175.           Components.classes["@mozilla.org/updates/update-manager;1"].
  1176.           getService(Components.interfaces.nsIUpdateManager);
  1177.       var prompter = 
  1178.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  1179.           createInstance(Components.interfaces.nsIUpdatePrompt);
  1180.  
  1181.       var shouldCleanup = true;
  1182.       var update = um.activeUpdate;
  1183.       if (!update) {
  1184.         update = new Update(null);
  1185.       }
  1186.       update.state = status;
  1187.       var sbs = 
  1188.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  1189.           getService(Components.interfaces.nsIStringBundleService);
  1190.       var bundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  1191.       if (status == STATE_SUCCEEDED) {
  1192.         update.statusText = bundle.GetStringFromName("installSuccess");
  1193.         
  1194.         // Dig through the update history to find the patch that was just
  1195.         // installed and update its metadata.
  1196.         for (var i = 0; i < um.updateCount; ++i) {
  1197.           var umUpdate = um.getUpdateAt(i);
  1198.           if (umUpdate && umUpdate.version == update.version &&
  1199.                           umUpdate.buildID == update.buildID) {
  1200.             umUpdate.statusText = update.statusText;
  1201.             break;
  1202.           }
  1203.         }
  1204.  
  1205.         LOG("UpdateService", "_postUpdateProcessing: Install Succeeded, Showing UI");
  1206.         prompter.showUpdateInstalled(update);
  1207. //@line 1185 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1208.         // Perform platform-specific post-update processing.
  1209.         if (POST_UPDATE_CONTRACTID in Components.classes) {
  1210.           Components.classes[POST_UPDATE_CONTRACTID].
  1211.               createInstance(Components.interfaces.nsIRunnable).run();
  1212.         }
  1213. //@line 1191 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1214.  
  1215.         // Done with this update. Clean it up.
  1216.         cleanupActiveUpdate(updRootKey);
  1217.       }
  1218.       else {
  1219.         // If we hit an error, then the error code will be included in the
  1220.         // status string following a colon.  If we had an I/O error, then we
  1221.         // assume that the patch is not invalid, and we restage the patch so
  1222.         // that it can be attempted again the next time we restart.
  1223.         var ary = status.split(": ");
  1224.         update.state = ary[0];
  1225.         if (update.state == STATE_FAILED && ary[1]) {
  1226.           update.errorCode = ary[1];
  1227.           if (update.errorCode == WRITE_ERROR) {
  1228.             prompter.showUpdateError(update);
  1229.             writeStatusFile(getUpdatesDir(), update.state = STATE_PENDING);
  1230.             return;
  1231.           }
  1232.         }
  1233.  
  1234.         // Something went wrong with the patch application process.
  1235.         cleanupActiveUpdate();
  1236.  
  1237.         update.statusText = bundle.GetStringFromName("patchApplyFailure");
  1238.         var oldType = update.selectedPatch ? update.selectedPatch.type 
  1239.                                            : "complete";
  1240.         if (update.selectedPatch && oldType == "partial") {
  1241.           // Partial patch application failed, try downloading the complete
  1242.           // update in the background instead.
  1243.           LOG("UpdateService", "_postUpdateProcessing: Install of Partial Patch " + 
  1244.               "failed, downloading Complete Patch and maybe showing UI");
  1245.           var status = this.downloadUpdate(update, true);
  1246.           if (status == STATE_NONE)
  1247.             cleanupActiveUpdate();
  1248.         }
  1249.         else {
  1250.           LOG("UpdateService", "_postUpdateProcessing: Install of Complete or " + 
  1251.               "only patch failed. Showing error.");
  1252.         }
  1253.         update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  1254.         update.setProperty("patchingFailed", oldType);
  1255.         prompter.showUpdateError(update);
  1256.       }
  1257.     }
  1258.     else {
  1259.       LOG("UpdateService", "_postUpdateProcessing: No Status, No Update");
  1260.     }
  1261.   },
  1262.  
  1263.   /**
  1264.    * Initialize Logging preferences, formatted like so:
  1265.    *  app.update.log.<moduleName> = <true|false>
  1266.    */
  1267.   _initLoggingPrefs: function() {
  1268.     try {
  1269.       var ps = Components.classes["@mozilla.org/preferences-service;1"]
  1270.                         .getService(Components.interfaces.nsIPrefService);
  1271.       var logBranch = ps.getBranch(PREF_APP_UPDATE_LOG_BRANCH);
  1272.       var modules = logBranch.getChildList("", { value: 0 });
  1273.  
  1274.       for (var i = 0; i < modules.length; ++i) {
  1275.         if (logBranch.prefHasUserValue(modules[i]))
  1276.           gLogEnabled[modules[i]] = logBranch.getBoolPref(modules[i]);
  1277.       }
  1278.     }
  1279.     catch (e) {
  1280.     }
  1281.   },
  1282.   
  1283.   /**
  1284.    * Notified when a timer fires
  1285.    * @param   timer
  1286.    *          The timer that fired
  1287.    */
  1288.   notify: function(timer) {
  1289.     // If a download is in progress, then do nothing.
  1290.     if (this.isDownloading || this._downloader && this._downloader.patchIsStaged)
  1291.       return;
  1292.  
  1293.     var self = this;
  1294.     var listener = {
  1295.       /**
  1296.        * See nsIUpdateService.idl
  1297.        */
  1298.       onProgress: function(request, position, totalSize) { 
  1299.       },
  1300.       
  1301.       /**
  1302.        * See nsIUpdateService.idl
  1303.        */
  1304.       onCheckComplete: function(request, updates, updateCount) {
  1305.         self._selectAndInstallUpdate(updates);
  1306.       },
  1307.  
  1308.       /**
  1309.        * See nsIUpdateService.idl
  1310.        */
  1311.       onError: function(request, update) { 
  1312.         LOG("Checker", "Error during background update: " + update.statusText);
  1313.       },
  1314.     }
  1315.     this.backgroundChecker.checkForUpdates(listener, false);
  1316.   },
  1317.   
  1318.   /**
  1319.    * Determine whether or not an update requires user confirmation before it
  1320.    * can be installed.
  1321.    * @param   update
  1322.    *          The update to be installed
  1323.    * @returns true if a prompt UI should be shown asking the user if they want
  1324.    *          to install the update, false if the update should just be 
  1325.    *          silently downloaded and installed.
  1326.    */
  1327.   _shouldPrompt: function(update) {
  1328.     // There are two possible outcomes here:
  1329.     // 1. download and install the update automatically
  1330.     // 2. alert the user about the presence of an update before doing anything
  1331.     //
  1332.     // The outcome we follow is determined as follows:
  1333.     // 
  1334.     // Note:  all Major updates require notification and confirmation
  1335.     // 
  1336.     // Update Type      Mode      Incompatible    Outcome
  1337.     // Major            0         Yes or No       Notify and Confirm
  1338.     // Major            1         No              Notify and Confirm
  1339.     // Major            1         Yes             Notify and Confirm
  1340.     // Major            2         Yes or No       Notify and Confirm
  1341.     // Minor            0         Yes or No       Auto Install
  1342.     // Minor            1         No              Auto Install
  1343.     // Minor            1         Yes             Notify and Confirm
  1344.     // Minor            2         No              Auto Install
  1345.     // Minor            2         Yes             Notify and Confirm
  1346.     //
  1347.     // In addition, if there is a license associated with an update, regardless
  1348.     // of type it must be agreed to. 
  1349.     //
  1350.     // If app.update.enabled is set to false, an update check is not performed
  1351.     // at all, and so none of the decision making above is entered into.
  1352.     //
  1353.     if (update.type == "major") {
  1354.       LOG("Checker", "_shouldPrompt: Prompting because it is a major update");
  1355.       return true;
  1356.     }
  1357.  
  1358.     update.QueryInterface(Components.interfaces.nsIPropertyBag);
  1359.     try {
  1360.       var licenseAccepted = update.getProperty("licenseAccepted") == "true";
  1361.     }
  1362.     catch (e) {
  1363.       licenseAccepted = false;
  1364.     }
  1365.     
  1366.     var updateEnabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1367.     if (!updateEnabled) {
  1368.       LOG("Checker", "_shouldPrompt: Not prompting because update is " + 
  1369.           "disabled");
  1370.       return false;
  1371.     }
  1372.     
  1373.     // User has turned off automatic download and install
  1374.     var autoEnabled = getPref("getBoolPref", PREF_APP_UPDATE_AUTO, true);
  1375.     if (!autoEnabled) {
  1376.       LOG("Checker", "_shouldPrompt: Prompting because auto install is disabled");
  1377.       return true;
  1378.     }
  1379.     
  1380.     switch (getPref("getIntPref", PREF_APP_UPDATE_MODE, 1)) {
  1381.     case 1:
  1382.       // Mode 1 is do not prompt only if there are no incompatibilities
  1383.       // releases
  1384.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1385.       return !isCompatible(update);
  1386.     case 2:
  1387.       // Mode 2 is do not prompt only if there are no incompatibilities
  1388.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1389.       return !isCompatible(update);
  1390.     }
  1391.     // Mode 0 is do not prompt regardless of incompatibilities
  1392.     LOG("Checker", "_shouldPrompt: Not prompting the user - they choose to " +
  1393.         "ignore incompatibilities");
  1394.     return false;
  1395.   },
  1396.   
  1397.   /**
  1398.    * Determine which of the specified updates should be installed.
  1399.    * @param   updates
  1400.    *          An array of available updates
  1401.    */
  1402.   selectUpdate: function(updates) {
  1403.     if (updates.length == 0)
  1404.       return null;
  1405.     
  1406.     // Choose the newest of the available minor and major updates. 
  1407.     var majorUpdate = null, minorUpdate = null;
  1408.     var newestMinor = updates[0], newestMajor = updates[0];
  1409.  
  1410.     var vc = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  1411.                        .getService(Components.interfaces.nsIVersionComparator);
  1412.     for (var i = 0; i < updates.length; ++i) {
  1413.       if (updates[i].type == "major" && 
  1414.           vc.compare(newestMajor.version, updates[i].version) <= 0)
  1415.         majorUpdate = newestMajor = updates[i];
  1416.       if (updates[i].type == "minor" && 
  1417.           vc.compare(newestMinor.version, updates[i].version) <= 0)
  1418.         minorUpdate = newestMinor = updates[i];
  1419.     }
  1420.  
  1421.     // IMPORTANT
  1422.     // If there's a minor update, always try and fetch that one first, 
  1423.     // otherwise use the newest major update.
  1424.     // selectUpdate() only returns one update.
  1425.     // if major were to trump minor, and we said "never" to the major
  1426.     // we'd never get the minor update, since selectUpdate()
  1427.     // would return the major update that the user said "never" to
  1428.     // (shadowing the important minor update with security fixes)
  1429.     return minorUpdate || majorUpdate;
  1430.   },
  1431.   
  1432.   /**
  1433.    * Determine which of the specified updates should be installed and
  1434.    * begin the download/installation process, optionally prompting the
  1435.    * user for permission if required.
  1436.    * @param   updates
  1437.    *          An array of available updates
  1438.    */
  1439.   _selectAndInstallUpdate: function(updates) {
  1440.     // Don't prompt if there's an active update - the user is already 
  1441.     // aware and is downloading, or performed some user action to prevent
  1442.     // notification.
  1443.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1444.                        .getService(Components.interfaces.nsIUpdateManager);
  1445.     if (um.activeUpdate)
  1446.       return;
  1447.     
  1448.     var update = this.selectUpdate(updates, updates.length);
  1449.     if (!update)
  1450.       return;
  1451.     
  1452.     // check if the user said "never" to this version
  1453.     // this check is done here, and not in selectUpdate() so that
  1454.     // the user can get an upgrade they said "never" to if they
  1455.     // manually do "Check for Updates..."
  1456.     // note, selectUpdate() only returns one update.
  1457.     // but in selectUpdate(), minor updates trump major updates
  1458.     // if major trumps minor, and we said "never" to the major
  1459.     // we'd never see the minor update.
  1460.     // 
  1461.     // note, the never decision should only apply to major updates
  1462.     // see bug #350636 for a scenario where this could potentially
  1463.     // be an issue
  1464.     //
  1465.     // fix for bug #359093
  1466.     // version might one day come back from AUS as an 
  1467.     // arbitrary (and possibly non ascii) string, so we need to encode it
  1468.     var neverPrefName = PREF_UPDATE_NEVER_BRANCH + encodeURIComponent(update.version);
  1469.     var never = getPref("getBoolPref", neverPrefName, false);
  1470.     if (never && update.type == "major")
  1471.       return;
  1472.  
  1473.     if (this._shouldPrompt(update))
  1474.       showPromptIfNoIncompatibilities(update);
  1475.     else {
  1476.       LOG("UpdateService", "_selectAndInstallUpdate: No need to show prompt, just download update");
  1477.       var status = this.downloadUpdate(update, true);
  1478.       if (status == STATE_NONE)
  1479.         cleanupActiveUpdate();
  1480.     }
  1481.   },
  1482.  
  1483.   /**
  1484.    * The Checker used for background update checks.
  1485.    */
  1486.   _backgroundChecker: null,
  1487.   
  1488.   /**
  1489.    * See nsIUpdateService.idl
  1490.    */
  1491.   get backgroundChecker() {
  1492.     if (!this._backgroundChecker) 
  1493.       this._backgroundChecker = new Checker();
  1494.     return this._backgroundChecker;
  1495.   },
  1496.   
  1497.   /**
  1498.    * See nsIUpdateService.idl
  1499.    */
  1500.   get canUpdate() {
  1501.     try {
  1502.       var appDirFile = getUpdateFile([FILE_PERMS_TEST]);
  1503.       LOG("UpdateService", "canUpdate?  testing " + appDirFile.path);
  1504.       if (!appDirFile.exists()) {
  1505.         appDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1506.         appDirFile.remove(false);
  1507.       }
  1508.       var updateDir = getUpdatesDir();
  1509.       var upDirFile = updateDir.clone();
  1510.       upDirFile.append(FILE_PERMS_TEST);
  1511.       LOG("UpdateService", "canUpdate?  testing " + upDirFile.path);
  1512.       if (!upDirFile.exists()) {
  1513.         upDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1514.         upDirFile.remove(false);
  1515.       }
  1516. //@line 1494 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1517.       var sysInfo = 
  1518.         Components.classes["@mozilla.org/system-info;1"]
  1519.                   .getService(Components.interfaces.nsIPropertyBag2);
  1520.   
  1521.       // On Windows, we no longer store the update under the app dir
  1522.       // if the app dir is under C:\Program Files. 
  1523.       //
  1524.       // If we are on Windows, but not Vista, we need to check that
  1525.       // we can create and remove files from the actual app directory
  1526.       // (like C:\Program Files\Mozilla Firefox).  If we can't,
  1527.       // because this user is not an adminstrator, for example
  1528.       // canUpdate() should return false (like it used to).
  1529.       // 
  1530.       // For Vista, don't perform this check because non-admin users
  1531.       // can update firefox (by granting the updater access via the 
  1532.       // UAC prompt)
  1533.       var windowsVersion = sysInfo.getProperty("version");
  1534.       LOG("UpdateService", "canUpdate?  version = " + windowsVersion);
  1535.       // Example windowsVersion:  Windows XP == 5.1
  1536.       if (parseFloat(windowsVersion) < 6) {
  1537.         var actualAppDir = getDir(KEY_APPDIR, []);
  1538.         var actualAppDirFile = actualAppDir.clone();
  1539.         actualAppDirFile.append(FILE_PERMS_TEST);
  1540.         LOG("UpdateService", "canUpdate?  testing " + actualAppDirFile.path);
  1541.         if (!actualAppDirFile.exists()) {
  1542.           actualAppDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1543.           actualAppDirFile.remove(false);
  1544.         }
  1545.       }
  1546. //@line 1524 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1547.     }
  1548.     catch (e) {
  1549.        LOG("UpdateService", "can't update, no privileges: " + e);
  1550.       // No write privileges to install directory
  1551.       return false;
  1552.     }
  1553.     // If the administrator has locked the app update functionality 
  1554.     // OFF - this is not just a user setting, so disable the manual
  1555.     // UI too.
  1556.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1557.     if (!enabled && gPref.prefIsLocked(PREF_APP_UPDATE_ENABLED)) {
  1558.       LOG("UpdateService", "can't update, disabled by pref");
  1559.       return false;
  1560.     }
  1561.  
  1562.     // If we don't know the binary platform we're updating, we can't update.
  1563.     if (!gABI) {
  1564.       LOG("UpdateService", "can't update, unknown ABI");
  1565.       return false;
  1566.     }
  1567.  
  1568.     // If we don't know the OS version we're updating, we can't update.
  1569.     if (!gOSVersion) {
  1570.       LOG("UpdateService", "can't update, unknown OS version");
  1571.       return false;
  1572.     }
  1573.  
  1574.     LOG("UpdateService", "can update");
  1575.     return true;
  1576.   },
  1577.   
  1578.   /**
  1579.    * See nsIUpdateService.idl
  1580.    */
  1581.   addDownloadListener: function(listener) {
  1582.     if (!this._downloader) {
  1583.       LOG("UpdateService", "addDownloadListener: no downloader!\n");
  1584.       return;
  1585.     }
  1586.     this._downloader.addDownloadListener(listener);
  1587.   },
  1588.   
  1589.   /**
  1590.    * See nsIUpdateService.idl
  1591.    */
  1592.   removeDownloadListener: function(listener) {
  1593.     if (!this._downloader) {
  1594.       LOG("UpdateService", "removeDownloadListener: no downloader!\n");
  1595.       return;
  1596.     }
  1597.     this._downloader.removeDownloadListener(listener);
  1598.   },
  1599.   
  1600.   /**
  1601.    * See nsIUpdateService.idl
  1602.    */
  1603.   downloadUpdate: function(update, background) {
  1604.     if (!update)
  1605.       throw Components.results.NS_ERROR_NULL_POINTER;
  1606.     if (this.isDownloading) {
  1607.       if (update.isCompleteUpdate == this._downloader.isCompleteUpdate &&
  1608.           background == this._downloader.background) {
  1609.         LOG("UpdateService", "no support for downloading more than one update at a time");
  1610.         return readStatusFile(getUpdatesDir());
  1611.       }
  1612.       this._downloader.cancel();
  1613.     }
  1614.     this._downloader = new Downloader(background);
  1615.     return this._downloader.downloadUpdate(update);
  1616.   },
  1617.   
  1618.   /**
  1619.    * See nsIUpdateService.idl
  1620.    */
  1621.   pauseDownload: function() {
  1622.     if (this.isDownloading)
  1623.       this._downloader.cancel();
  1624.   },
  1625.   
  1626.   /**
  1627.    * See nsIUpdateService.idl
  1628.    */
  1629.   get isDownloading() {
  1630.     return this._downloader && this._downloader.isBusy;
  1631.   },
  1632.   
  1633.   /**
  1634.    * See nsISupports.idl
  1635.    */
  1636.   QueryInterface: function(iid) {
  1637.     if (!iid.equals(Components.interfaces.nsIApplicationUpdateService) &&
  1638.         !iid.equals(Components.interfaces.nsITimerCallback) && 
  1639.         !iid.equals(Components.interfaces.nsIObserver) && 
  1640.         !iid.equals(Components.interfaces.nsISupports))
  1641.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1642.     return this;
  1643.   }
  1644. };
  1645.  
  1646. /**
  1647.  * A service to manage active and past updates.
  1648.  * @constructor
  1649.  */
  1650. function UpdateManager() {
  1651.   // Ensure the Active Update file is loaded
  1652.   var updates = this._loadXMLFileIntoArray(getUpdateFile([FILE_UPDATE_ACTIVE]));
  1653.   if (updates.length > 0)
  1654.     this._activeUpdate = updates[0];
  1655. }
  1656. UpdateManager.prototype = {
  1657.   /**
  1658.    * All previously downloaded and installed updates, as an array of nsIUpdate
  1659.    * objects.
  1660.    */
  1661.   _updates: null,
  1662.   
  1663.   /**
  1664.    * The current actively downloading/installing update, as a nsIUpdate object.
  1665.    */
  1666.   _activeUpdate: null,
  1667.   
  1668.   /**
  1669.    * Loads an updates.xml formatted file into an array of nsIUpdate items.
  1670.    * @param   file
  1671.    *          A nsIFile for the updates.xml file
  1672.    * @returns The array of nsIUpdate items held in the file.
  1673.    */
  1674.   _loadXMLFileIntoArray: function(file) {
  1675.     if (!file.exists()) {
  1676.       LOG("UpdateManager", "_loadXMLFileIntoArray: XML File does not exist");
  1677.       return [];
  1678.     }
  1679.  
  1680.     var result = [];
  1681.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1682.                                .createInstance(Components.interfaces.nsIFileInputStream);
  1683.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  1684.     try {
  1685.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1686.                             .createInstance(Components.interfaces.nsIDOMParser);
  1687.       var doc = parser.parseFromStream(fileStream, "UTF-8", fileStream.available(), "text/xml");
  1688.       
  1689.       var updateCount = doc.documentElement.childNodes.length;
  1690.       for (var i = 0; i < updateCount; ++i) {
  1691.         var updateElement = doc.documentElement.childNodes.item(i);
  1692.         if (updateElement.nodeType != Node.ELEMENT_NODE ||
  1693.             updateElement.localName != "update")
  1694.           continue;
  1695.  
  1696.         updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  1697.         try {
  1698.           var update = new Update(updateElement);
  1699.         } catch (e) {
  1700.           LOG("UpdateManager", "_loadXMLFileIntoArray: invalid update");
  1701.           continue;
  1702.         }
  1703.         result.push(new Update(updateElement));
  1704.       }
  1705.     }
  1706.     catch (e) {
  1707.       LOG("UpdateManager", "_loadXMLFileIntoArray: Error constructing update list " + 
  1708.           e);
  1709.     }
  1710.     fileStream.close();
  1711.     return result;
  1712.   },
  1713.   
  1714.   /**
  1715.    * Load the update manager, initializing state from state files.
  1716.    */
  1717.   _ensureUpdates: function() {
  1718.     if (!this._updates) {
  1719.       this._updates = this._loadXMLFileIntoArray(getUpdateFile(
  1720.                         [FILE_UPDATES_DB]));
  1721.  
  1722.       // Make sure that any active update is part of our updates list
  1723.       var active = this.activeUpdate;
  1724.       if (active)
  1725.         this._addUpdate(active);
  1726.     }
  1727.   },
  1728.  
  1729.   /**
  1730.    * See nsIUpdateService.idl
  1731.    */
  1732.   getUpdateAt: function(index) {
  1733.     this._ensureUpdates();
  1734.     return this._updates[index];
  1735.   },
  1736.   
  1737.   /**
  1738.    * See nsIUpdateService.idl
  1739.    */
  1740.   get updateCount() {
  1741.     this._ensureUpdates();
  1742.     return this._updates.length;
  1743.   },
  1744.   
  1745.   /**
  1746.    * See nsIUpdateService.idl
  1747.    */
  1748.   get activeUpdate() {
  1749.     if (this._activeUpdate &&
  1750.         this._activeUpdate.channel != getUpdateChannel()) {
  1751.       // User switched channels, clear out any old active updates and remove
  1752.       // partial downloads
  1753.       this._activeUpdate = null;
  1754.       
  1755.       // Destroy the updates directory, since we're done with it.
  1756.       cleanUpUpdatesDir();
  1757.     }
  1758.     return this._activeUpdate;
  1759.   },
  1760.   set activeUpdate(activeUpdate) {
  1761.     this._addUpdate(activeUpdate);
  1762.     this._activeUpdate = activeUpdate;
  1763.     if (!activeUpdate) {
  1764.       // If |activeUpdate| is null, we have updated both lists - the active list
  1765.       // and the history list, so we want to write both files.
  1766.       this.saveUpdates();
  1767.     }
  1768.     else
  1769.       this._writeUpdatesToXMLFile([this._activeUpdate], 
  1770.                                   getUpdateFile([FILE_UPDATE_ACTIVE]));
  1771.     return activeUpdate;
  1772.   },
  1773.   
  1774.   /**
  1775.    * Add an update to the Updates list. If the item already exists in the list,
  1776.    * replace the existing value with the new value.
  1777.    * @param   update
  1778.    *          The nsIUpdate object to add.
  1779.    */
  1780.   _addUpdate: function(update) {
  1781.     if (!update)
  1782.       return;
  1783.     this._ensureUpdates();
  1784.     if (this._updates) {
  1785.       for (var i = 0; i < this._updates.length; ++i) {
  1786.         if (this._updates[i] &&
  1787.             this._updates[i].version == update.version &&
  1788.             this._updates[i].buildID == update.buildID) {
  1789.           // Replace the existing entry with the new value, updating
  1790.           // all metadata.
  1791.           this._updates[i] = update;
  1792.           return;
  1793.         }
  1794.       }
  1795.     }
  1796.     // Otherwise add it to the front of the list.
  1797.     if (update) 
  1798.       this._updates = [update].concat(this._updates);
  1799.   },
  1800.   
  1801.   /**
  1802.    * Serializes an array of updates to an XML file
  1803.    * @param   updates
  1804.    *          An array of nsIUpdate objects
  1805.    * @param   file
  1806.    *          The nsIFile object to serialize to
  1807.    */
  1808.   _writeUpdatesToXMLFile: function(updates, file) {
  1809.     var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  1810.                         .createInstance(Components.interfaces.nsIFileOutputStream);
  1811.     var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  1812.     if (!file.exists()) 
  1813.       file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1814.     fos.init(file, modeFlags, PERMS_FILE, 0);
  1815.     
  1816.     try {
  1817.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1818.                             .createInstance(Components.interfaces.nsIDOMParser);
  1819.       const EMPTY_UPDATES_DOCUMENT = "<?xml version=\"1.0\"?><updates xmlns=\"http://www.mozilla.org/2005/app-update\"></updates>";
  1820.       var doc = parser.parseFromString(EMPTY_UPDATES_DOCUMENT, "text/xml");
  1821.  
  1822.       for (var i = 0; i < updates.length; ++i) {
  1823.         if (updates[i])
  1824.           doc.documentElement.appendChild(updates[i].serialize(doc));
  1825.       }
  1826.  
  1827.       var serializer = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"]
  1828.                                 .createInstance(Components.interfaces.nsIDOMSerializer);
  1829.       serializer.serializeToStream(doc.documentElement, fos, null);
  1830.     }
  1831.     catch (e) {
  1832.     }
  1833.     
  1834.     closeSafeOutputStream(fos);
  1835.   },
  1836.  
  1837.   /**
  1838.    * See nsIUpdateService.idl
  1839.    */
  1840.   saveUpdates: function() {
  1841.     this._writeUpdatesToXMLFile([this._activeUpdate], 
  1842.                                 getUpdateFile([FILE_UPDATE_ACTIVE]));
  1843.     if (this._updates) {
  1844.       this._writeUpdatesToXMLFile(this._updates.slice(0, 10), 
  1845.                                   getUpdateFile([FILE_UPDATES_DB]));
  1846.     }
  1847.   },
  1848.   
  1849.   /**
  1850.    * See nsISupports.idl
  1851.    */
  1852.   QueryInterface: function(iid) {
  1853.     if (!iid.equals(Components.interfaces.nsIUpdateManager) &&
  1854.         !iid.equals(Components.interfaces.nsISupports))
  1855.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1856.     return this;
  1857.   }
  1858. };
  1859.  
  1860.  
  1861. /**
  1862.  * Checker
  1863.  * Checks for new Updates
  1864.  * @constructor
  1865.  */
  1866. function Checker() {
  1867. }
  1868. Checker.prototype = {
  1869.   /**
  1870.    * The XMLHttpRequest object that performs the connection.
  1871.    */
  1872.   _request  : null,
  1873.   
  1874.   /**
  1875.    * The nsIUpdateCheckListener callback
  1876.    */
  1877.   _callback : null,
  1878.   
  1879.   /**
  1880.    * The URL of the update service XML file to connect to that contains details
  1881.    * about available updates.
  1882.    */
  1883.   getUpdateURL: function(force) {
  1884.     this._forced = force;
  1885.  
  1886.     var defaults =
  1887.         gPref.QueryInterface(Components.interfaces.nsIPrefService).
  1888.         getDefaultBranch(null);
  1889.  
  1890.     // Use the override URL if specified.
  1891.     var url = getPref("getCharPref", PREF_APP_UPDATE_URL_OVERRIDE, null);
  1892.  
  1893.     // Otherwise, construct the update URL from component parts.
  1894.     if (!url) {
  1895.       try {
  1896.         url = defaults.getCharPref(PREF_APP_UPDATE_URL);
  1897.       } catch (e) {
  1898.       }
  1899.     }
  1900.  
  1901.     if (!url || url == "") {
  1902.       LOG("Checker", "Update URL not defined");
  1903.       return null;
  1904.     }
  1905.  
  1906.     url = url.replace(/%PRODUCT%/g, gApp.name);
  1907.     url = url.replace(/%VERSION%/g, gApp.version);
  1908.     url = url.replace(/%BUILD_ID%/g, gApp.appBuildID);
  1909.     url = url.replace(/%BUILD_TARGET%/g, gApp.OS + "_" + gABI);
  1910.     url = url.replace(/%OS_VERSION%/g, gOSVersion);
  1911.     url = url.replace(/%LOCALE%/g, getLocale());
  1912.     url = url.replace(/%CHANNEL%/g, getUpdateChannel());
  1913.     url = url.replace(/\+/g, "%2B");
  1914.  
  1915.     if (force)
  1916.     url += "?force=1"
  1917.  
  1918.     LOG("Checker", "update url: " + url);
  1919.     return url;
  1920.   },
  1921.   
  1922.   /**
  1923.    * See nsIUpdateService.idl
  1924.    */
  1925.   checkForUpdates: function(listener, force) {
  1926.     if (!listener)
  1927.       throw Components.results.NS_ERROR_NULL_POINTER;
  1928.       
  1929.     if (!this.getUpdateURL(force) || (!this.enabled && !force))
  1930.       return;
  1931.       
  1932.     this._request = 
  1933.       Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].
  1934.       createInstance(Components.interfaces.nsIXMLHttpRequest);
  1935.     this._request.open("GET", this.getUpdateURL(force), true);
  1936.     this._request.channel.notificationCallbacks = new BadCertHandler();
  1937.     this._request.overrideMimeType("text/xml");
  1938.     this._request.setRequestHeader("Cache-Control", "no-cache");
  1939.     
  1940.     var self = this;
  1941.     this._request.onerror     = function(event) { self.onError(event);    };
  1942.     this._request.onload      = function(event) { self.onLoad(event);     };
  1943.     this._request.onprogress  = function(event) { self.onProgress(event); };
  1944.  
  1945.     LOG("Checker", "checkForUpdates: sending request to " + this.getUpdateURL(force));
  1946.     this._request.send(null);
  1947.     
  1948.     this._callback = listener;
  1949.   },
  1950.   
  1951.   /**
  1952.    * When progress associated with the XMLHttpRequest is received.
  1953.    * @param   event
  1954.    *          The nsIDOMLSProgressEvent for the load.
  1955.    */
  1956.   onProgress: function(event) {
  1957.     LOG("Checker", "onProgress: " + event.position + "/" + event.totalSize);
  1958.     this._callback.onProgress(event.target, event.position, event.totalSize);
  1959.   },
  1960.   
  1961.   /**
  1962.    * Returns an array of nsIUpdate objects discovered by the update check.
  1963.    */
  1964.   get _updates() {
  1965.     var updatesElement = this._request.responseXML.documentElement;
  1966.     if (!updatesElement) {
  1967.       LOG("Checker", "get_updates: empty updates document?!");
  1968.       return [];
  1969.     }
  1970.  
  1971.     if (updatesElement.nodeName != "updates") {
  1972.       LOG("Checker", "get_updates: unexpected node name!");
  1973.       throw "";
  1974.     }
  1975.     
  1976.     var updates = [];
  1977.     for (var i = 0; i < updatesElement.childNodes.length; ++i) {
  1978.       var updateElement = updatesElement.childNodes.item(i);
  1979.       if (updateElement.nodeType != Node.ELEMENT_NODE ||
  1980.           updateElement.localName != "update")
  1981.         continue;
  1982.  
  1983.       updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  1984.       try {
  1985.         var update = new Update(updateElement);
  1986.       } catch (e) {
  1987.         LOG("Checker", "Invalid <update/>, ignoring...");
  1988.         continue;
  1989.       }
  1990.       update.serviceURL = this.getUpdateURL(this._forced);
  1991.       update.channel = getUpdateChannel();
  1992.       updates.push(update);
  1993.     }
  1994.  
  1995.     return updates;
  1996.   },
  1997.   
  1998.   /**
  1999.    * The XMLHttpRequest succeeded and the document was loaded.
  2000.    * @param   event
  2001.    *          The nsIDOMLSEvent for the load
  2002.    */
  2003.   onLoad: function(event) {
  2004.     LOG("Checker", "onLoad: request completed downloading document");
  2005.     
  2006.     try {
  2007.       checkCert(this._request.channel);
  2008.  
  2009.       // Analyze the resulting DOM and determine the set of updates to install
  2010.       var updates = this._updates;
  2011.       
  2012.       LOG("Checker", "Updates available: " + updates.length);
  2013.       
  2014.       // ... and tell the Update Service about what we discovered.
  2015.       this._callback.onCheckComplete(event.target, updates, updates.length);
  2016.     }
  2017.     catch (e) {
  2018.       LOG("Checker", "There was a problem with the update service URL specified, " + 
  2019.           "either the XML file was malformed or it does not exist at the location " + 
  2020.           "specified. Exception: " + e);
  2021.       var update = new Update(null);
  2022.       update.statusText = getStatusTextFromCode(404, 404);
  2023.       this._callback.onError(event.target, update);
  2024.     }
  2025.  
  2026.     this._request = null;
  2027.   },
  2028.   
  2029.   /**
  2030.    * There was an error of some kind during the XMLHttpRequest
  2031.    * @param   event
  2032.    *          The nsIDOMLSEvent for the load
  2033.    */
  2034.   onError: function(event) {
  2035.     LOG("Checker", "onError: error during load");
  2036.     
  2037.     var request = event.target;
  2038.     try {
  2039.       var status = request.status;
  2040.     }
  2041.     catch (e) {
  2042.       var req = request.channel.QueryInterface(Components.interfaces.nsIRequest);
  2043.       status = req.status;
  2044.     }
  2045.     
  2046.     // If we can't find an error string specific to this status code, 
  2047.     // just use the 200 message from above, which means everything 
  2048.     // "looks" fine but there was probably an XML error or a bogus file.
  2049.     var update = new Update(null);
  2050.     update.statusText = getStatusTextFromCode(status, 200);
  2051.     this._callback.onError(request, update);
  2052.  
  2053.     this._request = null;
  2054.   },
  2055.   
  2056.   /**
  2057.    * Whether or not we are allowed to do update checking.
  2058.    */
  2059.   _enabled: true,
  2060.   
  2061.   /**
  2062.    * See nsIUpdateService.idl
  2063.    */
  2064.   get enabled() {
  2065.     var aus = 
  2066.         Components.classes["@mozilla.org/updates/update-service;1"].
  2067.         getService(Components.interfaces.nsIApplicationUpdateService);
  2068.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true) && 
  2069.                   aus.canUpdate && this._enabled;
  2070.     return enabled;
  2071.   },
  2072.   
  2073.   /**
  2074.    * See nsIUpdateService.idl
  2075.    */
  2076.   stopChecking: function(duration) {
  2077.     // Always stop the current check
  2078.     if (this._request)
  2079.       this._request.abort();
  2080.     
  2081.     const nsIUpdateChecker = Components.interfaces.nsIUpdateChecker;
  2082.     switch (duration) {
  2083.     case nsIUpdateChecker.CURRENT_SESSION:
  2084.       this._enabled = false;
  2085.       break;
  2086.     case nsIUpdateChecker.ANY_CHECKS:
  2087.       this._enabled = false;
  2088.       gPref.setBoolPref(PREF_APP_UPDATE_ENABLED, this._enabled);
  2089.       break;
  2090.     }
  2091.   },
  2092.   
  2093.   /**
  2094.    * See nsISupports.idl
  2095.    */
  2096.   QueryInterface: function(iid) {
  2097.     if (!iid.equals(Components.interfaces.nsIUpdateChecker) &&
  2098.         !iid.equals(Components.interfaces.nsISupports))
  2099.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2100.     return this;
  2101.   }
  2102. };
  2103.  
  2104. /**
  2105.  * Manages the download of updates
  2106.  * @param   background
  2107.  *          Whether or not this downloader is operating in background
  2108.  *          update mode. 
  2109.  * @constructor
  2110.  */
  2111. function Downloader(background) {
  2112.   this.background = background;
  2113. }
  2114. Downloader.prototype = {
  2115.   /**
  2116.    * The nsIUpdatePatch that we are downloading
  2117.    */
  2118.   _patch: null,
  2119.   
  2120.   /**
  2121.    * The nsIUpdate that we are downloading
  2122.    */
  2123.   _update: null,
  2124.   
  2125.   /**
  2126.    * The nsIIncrementalDownload object handling the download
  2127.    */
  2128.   _request: null,
  2129.  
  2130.   /**
  2131.    * Whether or not the update being downloaded is a complete replacement of
  2132.    * the user's existing installation or a patch representing the difference
  2133.    * between the new version and the previous version.
  2134.    */
  2135.   isCompleteUpdate: null,
  2136.  
  2137.   /**
  2138.    * Cancels the active download.
  2139.    */  
  2140.   cancel: function() {
  2141.     if (this._request && 
  2142.         this._request instanceof Components.interfaces.nsIRequest) {
  2143.       const NS_BINDING_ABORTED = 0x804b0002;
  2144.       this._request.cancel(NS_BINDING_ABORTED);
  2145.     }
  2146.   },
  2147.  
  2148.   /**
  2149.    * Whether or not a patch has been downloaded and staged for installation.
  2150.    */
  2151.   get patchIsStaged() {
  2152.     return readStatusFile(getUpdatesDir()) == STATE_PENDING;
  2153.   },
  2154.  
  2155.   /**
  2156.    * Verify the downloaded file.  We assume that the download is complete at
  2157.    * this point.
  2158.    */
  2159.   _verifyDownload: function() {
  2160.     if (!this._request)
  2161.       return false;
  2162.  
  2163.     var destination = this._request.destination;
  2164.  
  2165.     // Ensure that the file size matches the expected file size.
  2166.     if (destination.fileSize != this._patch.size)
  2167.       return false;
  2168.  
  2169.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"].
  2170.         createInstance(nsIFileInputStream);
  2171.     fileStream.init(destination, MODE_RDONLY, PERMS_FILE, 0);
  2172.  
  2173.     try {
  2174.       var hash = Components.classes["@mozilla.org/security/hash;1"].
  2175.           createInstance(nsICryptoHash);
  2176.       var hashFunction = nsICryptoHash[this._patch.hashFunction.toUpperCase()];
  2177.       if (hashFunction == undefined)
  2178.         throw Components.results.NS_ERROR_UNEXPECTED;
  2179.       hash.init(hashFunction);
  2180.       hash.updateFromStream(fileStream, -1);
  2181.       // NOTE: For now, we assume that the format of _patch.hashValue is hex
  2182.       // encoded binary (such as what is typically output by programs like
  2183.       // sha1sum).  In the future, this may change to base64 depending on how
  2184.       // we choose to compute these hashes.
  2185.       digest = binaryToHex(hash.finish(false));
  2186.     } catch (e) {
  2187.       LOG("Downloader", "failed to compute hash of downloaded update archive");
  2188.       digest = "";
  2189.     }
  2190.  
  2191.     fileStream.close();
  2192.  
  2193.     return digest == this._patch.hashValue.toLowerCase();
  2194.   },
  2195.  
  2196.   /**
  2197.    * Select the patch to use given the current state of updateDir and the given
  2198.    * set of update patches.
  2199.    * @param   update
  2200.    *          A nsIUpdate object to select a patch from
  2201.    * @param   updateDir
  2202.    *          A nsIFile representing the update directory
  2203.    * @returns A nsIUpdatePatch object to download
  2204.    */
  2205.   _selectPatch: function(update, updateDir) {
  2206.     // Given an update to download, we will always try to download the patch
  2207.     // for a partial update over the patch for a full update.
  2208.  
  2209.     /**
  2210.      * Return the first UpdatePatch with the given type.
  2211.      * @param   type
  2212.      *          The type of the patch ("complete" or "partial")
  2213.      * @returns A nsIUpdatePatch object matching the type specified
  2214.      */
  2215.     function getPatchOfType(type) {
  2216.       for (var i = 0; i < update.patchCount; ++i) {
  2217.         var patch = update.getPatchAt(i);
  2218.         if (patch && patch.type == type)
  2219.           return patch;
  2220.       }
  2221.       return null;
  2222.     }
  2223.  
  2224.     // Look to see if any of the patches in the Update object has been
  2225.     // pre-selected for download, otherwise we must figure out which one
  2226.     // to select ourselves. 
  2227.     var selectedPatch = update.selectedPatch;
  2228.     
  2229.     var state = readStatusFile(updateDir);
  2230.  
  2231.     // If this is a patch that we know about, then select it.  If it is a patch
  2232.     // that we do not know about, then remove it and use our default logic.
  2233.     var useComplete = false;
  2234.     if (selectedPatch) {
  2235.       LOG("Downloader", "found existing patch [state="+state+"]");
  2236.       switch (state) {
  2237.       case STATE_DOWNLOADING: 
  2238.         LOG("Downloader", "resuming download");
  2239.         return selectedPatch;
  2240.       case STATE_PENDING:
  2241.         LOG("Downloader", "already downloaded and staged");
  2242.         return null;
  2243.       default:
  2244.         // Something went wrong when we tried to apply the previous patch.
  2245.         // Try the complete patch next time.
  2246.         if (update && selectedPatch.type == "partial") {
  2247.           useComplete = true;
  2248.         } else {
  2249.           // This is a pretty fatal error.  Just bail.
  2250.           LOG("Downloader", "failed to apply complete patch!");
  2251.           writeStatusFile(updateDir, STATE_NONE);
  2252.           return null;
  2253.         }
  2254.       }
  2255.  
  2256.       selectedPatch = null;
  2257.     }
  2258.     
  2259.     // If we were not able to discover an update from a previous download, we 
  2260.     // select the best patch from the given set.
  2261.     var partialPatch = getPatchOfType("partial");
  2262.     if (!useComplete)
  2263.       selectedPatch = partialPatch;
  2264.     if (!selectedPatch) {
  2265.       if (partialPatch)
  2266.         partialPatch.selected = false;
  2267.       selectedPatch = getPatchOfType("complete");
  2268.     }
  2269.  
  2270.     // Restore the updateDir since we may have deleted it.
  2271.     updateDir = getUpdatesDir();
  2272.  
  2273.     // if update only contains a partial patch, selectedPatch == null here if
  2274.     // the partial patch has been attempted and fails and we're trying to get a
  2275.     // complete patch
  2276.     if (selectedPatch)    
  2277.       selectedPatch.selected = true;
  2278.  
  2279.     update.isCompleteUpdate = useComplete;
  2280.     
  2281.     // Reset the Active Update object on the Update Manager and flush the
  2282.     // Active Update DB. 
  2283.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2284.                        .getService(Components.interfaces.nsIUpdateManager);
  2285.     um.activeUpdate = update;
  2286.  
  2287.     return selectedPatch;
  2288.   },
  2289.  
  2290.   /**
  2291.    * Whether or not we are currently downloading something.
  2292.    */
  2293.   get isBusy() {
  2294.     return this._request != null;
  2295.   },
  2296.   
  2297.   /**
  2298.    * Download and stage the given update.
  2299.    * @param   update
  2300.    *          A nsIUpdate object to download a patch for. Cannot be null.
  2301.    */
  2302.   downloadUpdate: function(update) {
  2303.     if (!update)
  2304.       throw Components.results.NS_ERROR_NULL_POINTER;
  2305.     
  2306.     var updateDir = getUpdatesDir();
  2307.  
  2308.     this._update = update;
  2309.  
  2310.     // This function may return null, which indicates that there are no patches
  2311.     // to download.
  2312.     this._patch = this._selectPatch(update, updateDir);
  2313.     if (!this._patch) {
  2314.       LOG("Downloader", "no patch to download");
  2315.       return readStatusFile(updateDir);
  2316.     }
  2317.     this.isCompleteUpdate = this._patch.type == "complete";
  2318.  
  2319.     var patchFile = updateDir.clone();
  2320.     patchFile.append(FILE_UPDATE_ARCHIVE);
  2321.  
  2322.     var ios = Components.classes["@mozilla.org/network/io-service;1"].
  2323.         getService(Components.interfaces.nsIIOService);
  2324.     var uri = ios.newURI(this._patch.URL, null, null);
  2325.  
  2326.     this._request =
  2327.         Components.classes["@mozilla.org/network/incremental-download;1"].
  2328.         createInstance(nsIIncrementalDownload);
  2329.  
  2330.     LOG("Downloader", "downloadUpdate: Downloading from " + uri.spec + " to " + 
  2331.         patchFile.path);
  2332.  
  2333.     var interval = this.background ? DOWNLOAD_BACKGROUND_INTERVAL
  2334.                                    : DOWNLOAD_FOREGROUND_INTERVAL;
  2335.     this._request.init(uri, patchFile, DOWNLOAD_CHUNK_SIZE, interval);
  2336.     this._request.start(this, null);
  2337.  
  2338.     writeStatusFile(updateDir, STATE_DOWNLOADING);
  2339.     this._patch.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2340.     this._patch.state = STATE_DOWNLOADING;
  2341.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2342.                        .getService(Components.interfaces.nsIUpdateManager);
  2343.     um.saveUpdates();
  2344.     return STATE_DOWNLOADING;
  2345.   },
  2346.   
  2347.   /**
  2348.    * An array of download listeners to notify when we receive 
  2349.    * nsIRequestObserver or nsIProgressEventSink method calls.
  2350.    */
  2351.   _listeners: [],
  2352.  
  2353.   /** 
  2354.    * Adds a listener to the download process
  2355.    * @param   listener
  2356.    *          A download listener, implementing nsIRequestObserver and
  2357.    *          nsIProgressEventSink
  2358.    */
  2359.   addDownloadListener: function(listener) {
  2360.     for (var i = 0; i < this._listeners.length; ++i) {
  2361.       if (this._listeners[i] == listener)
  2362.         return;
  2363.     }
  2364.     this._listeners.push(listener);
  2365.   },
  2366.   
  2367.   /** 
  2368.    * Removes a download listener
  2369.    * @param   listener
  2370.    *          The listener to remove.
  2371.    */
  2372.   removeDownloadListener: function(listener) {
  2373.     for (var i = 0; i < this._listeners.length; ++i) {
  2374.       if (this._listeners[i] == listener) {
  2375.         this._listeners.splice(i, 1);
  2376.         return;
  2377.       }
  2378.     }
  2379.   },
  2380.   
  2381.   /**
  2382.    * When the async request begins
  2383.    * @param   request
  2384.    *          The nsIRequest object for the transfer
  2385.    * @param   context
  2386.    *          Additional data
  2387.    */
  2388.   onStartRequest: function(request, context) {
  2389.     request.QueryInterface(nsIIncrementalDownload);
  2390.     LOG("Downloader", "onStartRequest: " + request.URI.spec);
  2391.     
  2392.     var listenerCount = this._listeners.length;
  2393.     for (var i = 0; i < listenerCount; ++i)
  2394.       this._listeners[i].onStartRequest(request, context);
  2395.   },
  2396.   
  2397.   /** 
  2398.    * When new data has been downloaded
  2399.    * @param   request
  2400.    *          The nsIRequest object for the transfer
  2401.    * @param   context
  2402.    *          Additional data
  2403.    * @param   progress
  2404.    *          The current number of bytes transferred
  2405.    * @param   maxProgress
  2406.    *          The total number of bytes that must be transferred
  2407.    */
  2408.   onProgress: function(request, context, progress, maxProgress) {
  2409.     request.QueryInterface(nsIIncrementalDownload);
  2410.     LOG("Downloader.onProgress", "onProgress: " + request.URI.spec + ", " + progress + "/" + maxProgress);
  2411.     
  2412.     var listenerCount = this._listeners.length;
  2413.     for (var i = 0; i < listenerCount; ++i) {
  2414.       var listener = this._listeners[i];
  2415.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2416.         listener.onProgress(request, context, progress, maxProgress);
  2417.     }
  2418.   },
  2419.   
  2420.   /** 
  2421.    * When we have new status text
  2422.    * @param   request
  2423.    *          The nsIRequest object for the transfer
  2424.    * @param   context
  2425.    *          Additional data
  2426.    * @param   status
  2427.    *          A status code
  2428.    * @param   statusText
  2429.    *          Human readable version of |status|
  2430.    */
  2431.   onStatus: function(request, context, status, statusText) {
  2432.     request.QueryInterface(nsIIncrementalDownload);
  2433.     LOG("Downloader", "onStatus: " + request.URI.spec + " status = " + status + ", text = " + statusText);
  2434.     var listenerCount = this._listeners.length;
  2435.     for (var i = 0; i < listenerCount; ++i) {
  2436.       var listener = this._listeners[i];
  2437.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2438.         listener.onStatus(request, context, status, statusText);
  2439.     }
  2440.   },
  2441.   
  2442.   /** 
  2443.    * When data transfer ceases
  2444.    * @param   request
  2445.    *          The nsIRequest object for the transfer
  2446.    * @param   context
  2447.    *          Additional data
  2448.    * @param   status
  2449.    *          Status code containing the reason for the cessation.
  2450.    */
  2451.   onStopRequest: function(request, context, status) {
  2452.     request.QueryInterface(nsIIncrementalDownload);
  2453.     LOG("Downloader", "onStopRequest: " + request.URI.spec + ", status = " + status);
  2454.  
  2455.     var state = this._patch.state;
  2456.     var shouldShowPrompt = false;
  2457.     var deleteActiveUpdate = false;
  2458.     const NS_BINDING_ABORTED = 0x804b0002;
  2459.     const NS_ERROR_ABORT = 0x80004004;
  2460.     if (Components.isSuccessCode(status)) {
  2461.       var sbs = 
  2462.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  2463.           getService(Components.interfaces.nsIStringBundleService);
  2464.       var updateStrings = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2465.       if (this._verifyDownload()) {
  2466.         state = STATE_PENDING;
  2467.         
  2468.         // We only need to explicitly show the prompt if this is a backround
  2469.         // download, since otherwise some kind of UI is already visible and 
  2470.         // that UI will notify. 
  2471.         if (this.background)
  2472.           shouldShowPrompt = true;
  2473.         
  2474.         // Tell the updater.exe we're ready to apply.
  2475.         writeStatusFile(getUpdatesDir(), state);
  2476.         this._update.installDate = (new Date()).getTime();
  2477.         this._update.statusText = updateStrings.
  2478.           GetStringFromName("installPending");
  2479.       } else {
  2480.         LOG("Downloader", "onStopRequest: download verification failed");
  2481.         state = STATE_DOWNLOAD_FAILED;
  2482.         
  2483.         var brandStrings = sbs.createBundle(URI_BRAND_PROPERTIES);
  2484.         var brandShortName = brandStrings.GetStringFromName("brandShortName");
  2485.         this._update.statusText = updateStrings.
  2486.           formatStringFromName("verificationError", [brandShortName], 1);
  2487.         
  2488.         // TODO: use more informative error code here
  2489.         status = Components.results.NS_ERROR_UNEXPECTED;
  2490.         
  2491.         var message = getStatusTextFromCode("verification_failed", 
  2492.           "verification_failed");
  2493.         this._update.statusText = message;
  2494.         
  2495.         if (this._update.isCompleteUpdate)
  2496.           deleteActiveUpdate = true;
  2497.  
  2498.         // Destroy the updates directory, since we're done with it.
  2499.         cleanUpUpdatesDir();
  2500.       }
  2501.     }
  2502.     else if (status != NS_BINDING_ABORTED &&
  2503.              status != NS_ERROR_ABORT) {
  2504.       LOG("Downloader", "onStopRequest: Non-verification failure");
  2505.       // Some sort of other failure, log this in the |statusText| property
  2506.       state = STATE_DOWNLOAD_FAILED;
  2507.       
  2508.       // XXXben - if |request| (The Incremental Download) provided a means
  2509.       // for accessing the http channel we could do more here.
  2510.       
  2511.       const NS_BINDING_FAILED = 2152398849;
  2512.       this._update.statusText = getStatusTextFromCode(status, 
  2513.         NS_BINDING_FAILED);
  2514.       
  2515.       // Destroy the updates directory, since we're done with it.
  2516.       cleanUpUpdatesDir();
  2517.       
  2518.       deleteActiveUpdate = true;
  2519.     }
  2520.     LOG("Downloader", "Setting state to: " + state);
  2521.     this._patch.state = state;
  2522.     var um = 
  2523.         Components.classes["@mozilla.org/updates/update-manager;1"].
  2524.         getService(Components.interfaces.nsIUpdateManager);
  2525.     if (deleteActiveUpdate) {
  2526.       this._update.installDate = (new Date()).getTime();
  2527.       um.activeUpdate = null;
  2528.     }
  2529.     um.saveUpdates();
  2530.     
  2531.     var listenerCount = this._listeners.length;
  2532.     for (var i = 0; i < listenerCount; ++i)
  2533.       this._listeners[i].onStopRequest(request, context, status);
  2534.  
  2535.     this._request = null;
  2536.     
  2537.     if (state == STATE_DOWNLOAD_FAILED) {
  2538.       if (!this._update.isCompleteUpdate) {
  2539.         var allFailed = true;
  2540.   
  2541.         // If we were downloading a patch and the patch verification phase 
  2542.         // failed, log this and then commence downloading the complete update.
  2543.         LOG("Downloader", "onStopRequest: Verification of patch failed, downloading complete update");
  2544.         this._update.isCompleteUpdate = true;
  2545.         var status = this.downloadUpdate(this._update);
  2546.  
  2547.         if (status == STATE_NONE) {
  2548.           cleanupActiveUpdate();
  2549.         } else {
  2550.           allFailed = false;
  2551.         }
  2552.         // This will reset the |.state| property on this._update if a new 
  2553.         // download initiates.
  2554.       }
  2555.     
  2556.       // if we still fail after trying a complete download, give up completely
  2557.       if (allFailed) {
  2558.         // In all other failure cases, i.e. we're S.O.L. - no more failing over
  2559.         // ...
  2560.         
  2561.         // If this was ever a foreground download, and now there is no UI active
  2562.         // (e.g. because the user closed the download window) and there was an
  2563.         // error, we must notify now. Otherwise we can keep the failure to 
  2564.         // ourselves since the user won't be expecting it. 
  2565.         try {
  2566.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2567.           var fgdl = this._update.getProperty("foregroundDownload");
  2568.         }
  2569.         catch (e) {
  2570.         }
  2571.       
  2572.         if (fgdl == "true") {
  2573.           var prompter = 
  2574.               Components.classes["@mozilla.org/updates/update-prompt;1"].
  2575.               createInstance(Components.interfaces.nsIUpdatePrompt);
  2576.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2577.           this._update.setProperty("downloadFailed", "true");
  2578.           prompter.showUpdateError(this._update);
  2579.         }
  2580.       }
  2581.  
  2582.       // the complete download succeeded or total failure was handled, so exit
  2583.       return;
  2584.     }
  2585.  
  2586.     // Do this after *everything* else, since it will likely cause the app 
  2587.     // to shut down. 
  2588.     if (shouldShowPrompt) {
  2589.       // Notify the user that an update has been downloaded and is ready for 
  2590.       // installation (i.e. that they should restart the application). We do
  2591.       // not notify on failed update attempts.
  2592.       var prompter = 
  2593.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  2594.           createInstance(Components.interfaces.nsIUpdatePrompt);
  2595.       prompter.showUpdateDownloaded(this._update);
  2596.     }
  2597.   },
  2598.  
  2599.   /**
  2600.    * See nsIInterfaceRequestor.idl
  2601.    */
  2602.   getInterface: function(iid) {
  2603.     // The network request may require proxy authentication, so provide the
  2604.     // default nsIAuthPrompt if requested.
  2605.     if (iid.equals(Components.interfaces.nsIAuthPrompt)) {
  2606.       var prompt =
  2607.           Components.classes["@mozilla.org/network/default-auth-prompt;1"].
  2608.           createInstance();
  2609.       return prompt.QueryInterface(iid);
  2610.     }
  2611.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2612.   },
  2613.    
  2614.   /**
  2615.    * See nsISupports.idl
  2616.    */
  2617.   QueryInterface: function(iid) {
  2618.     if (!iid.equals(Components.interfaces.nsIRequestObserver) &&
  2619.         !iid.equals(Components.interfaces.nsIProgressEventSink) &&
  2620.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  2621.         !iid.equals(Components.interfaces.nsISupports))
  2622.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2623.     return this;
  2624.   }
  2625. };
  2626.  
  2627. /**
  2628.  * A manager for update check timers. Manages timers that fire over long 
  2629.  * periods of time (e.g. days, weeks).
  2630.  * @constructor
  2631.  */
  2632. function TimerManager() {
  2633.   getObserverService().addObserver(this, "xpcom-shutdown", false);
  2634.  
  2635.   const nsITimer = Components.interfaces.nsITimer;
  2636.   this._timer = Components.classes["@mozilla.org/timer;1"]
  2637.                           .createInstance(nsITimer);
  2638.   var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2639.   this._timer.initWithCallback(this, timerInterval, 
  2640.                                nsITimer.TYPE_REPEATING_SLACK);
  2641. }
  2642. TimerManager.prototype = {
  2643.   /**
  2644.    * See nsIObserver.idl
  2645.    */
  2646.   observe: function(subject, topic, data) {
  2647.     if (topic == "xpcom-shutdown") {
  2648.      getObserverService().removeObserver(this, "xpcom-shutdown");
  2649.  
  2650.       // Release everything we hold onto. 
  2651.       for (var timerID in this._timers)
  2652.         delete this._timers[timerID];
  2653.       this._timer = null;
  2654.       this._timers = null;
  2655.     }
  2656.   },
  2657.  
  2658.   /**
  2659.    * The Checker Timer
  2660.    */
  2661.   _timer: null,
  2662.   
  2663.   /**
  2664.    * The set of registered timers.
  2665.    */
  2666.   _timers: { },
  2667.   
  2668.   /**
  2669.    * Called when the checking timer fires.
  2670.    * @param   timer
  2671.    *          The checking timer that fired. 
  2672.    */
  2673.   notify: function(timer) {
  2674.     for (var timerID in this._timers) {
  2675.       var timerData = this._timers[timerID];
  2676.       var lastUpdateTime = timerData.lastUpdateTime;
  2677.       var now = Math.round(Date.now() / 1000);
  2678.     
  2679.       // Fudge the lastUpdateTime by some random increment of the update 
  2680.       // check interval (e.g. some random slice of 10 minutes) so that when
  2681.       // the time comes to check, we offset each client request by a random
  2682.       // amount so they don't all hit at once. app.update.timer is in milliseconds,
  2683.       // whereas app.update.lastUpdateTime is in seconds
  2684.       var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2685.       lastUpdateTime += Math.round(Math.random() * timerInterval / 1000);
  2686.  
  2687.       if ((now - lastUpdateTime) > timerData.interval &&
  2688.           timerData.callback instanceof Components.interfaces.nsITimerCallback) {
  2689.         timerData.callback.notify(timer);
  2690.         timerData.lastUpdateTime = now;
  2691.         var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, timerID);
  2692.         gPref.setIntPref(preference, now);
  2693.       }
  2694.     }
  2695.   },
  2696.   
  2697.   /**
  2698.    * See nsIUpdateService.idl
  2699.    */
  2700.   registerTimer: function(id, callback, interval) {
  2701.     var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, id);
  2702.     var now = Math.round(Date.now() / 1000);
  2703.     var lastUpdateTime = null;
  2704.     if (gPref.prefHasUserValue(preference)) {
  2705.       lastUpdateTime = gPref.getIntPref(preference);
  2706.     } else {
  2707.       gPref.setIntPref(preference, now);
  2708.       lastUpdateTime = now;
  2709.     }
  2710.     this._timers[id] = { callback       : callback, 
  2711.                          interval       : interval,
  2712.                          lastUpdateTime : lastUpdateTime }; 
  2713.   },
  2714.  
  2715.   /**
  2716.    * See nsISupports.idl
  2717.    */
  2718.   QueryInterface: function(iid) {
  2719.     if (!iid.equals(Components.interfaces.nsIUpdateTimerManager) &&
  2720.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  2721.         !iid.equals(Components.interfaces.nsIObserver) &&
  2722.         !iid.equals(Components.interfaces.nsISupports))
  2723.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2724.     return this;
  2725.   }
  2726. };
  2727.  
  2728. //@line 2706 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2729. /**
  2730.  * UpdatePrompt
  2731.  * An object which can prompt the user with information about updates, request
  2732.  * action, etc. Embedding clients can override this component with one that 
  2733.  * invokes a native front end. 
  2734.  * @constructor
  2735.  */
  2736. function UpdatePrompt() {
  2737. }
  2738. UpdatePrompt.prototype = {
  2739.   /**
  2740.    * See nsIUpdateService.idl
  2741.    */
  2742.   checkForUpdates: function() {
  2743.     this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2744.                  null, null);
  2745.   },
  2746.     
  2747.   /**
  2748.    * See nsIUpdateService.idl
  2749.    */
  2750.   showUpdateAvailable: function(update) {
  2751.     if (this._enabled) {
  2752.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2753.                    "updatesavailable", update);
  2754.     }
  2755.   },
  2756.   
  2757.   /**
  2758.    * See nsIUpdateService.idl
  2759.    */
  2760.   showUpdateDownloaded: function(update) {
  2761.     if (this._enabled) {
  2762.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2763.                    "finishedBackground", update);
  2764.     }
  2765.   },
  2766.   
  2767.   /**
  2768.    * See nsIUpdateService.idl
  2769.    */
  2770.   showUpdateInstalled: function(update) {
  2771.     var showUpdateInstalledUI = getPref("getBoolPref", 
  2772.       PREF_APP_UPDATE_SHOW_INSTALLED_UI, true);
  2773.     if (this._enabled && showUpdateInstalledUI) {
  2774.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2775.                    "installed", update);
  2776.     }
  2777.   },
  2778.   
  2779.   /**
  2780.    * See nsIUpdateService.idl
  2781.    */
  2782.   showUpdateError: function(update) {
  2783.     if (this._enabled) {
  2784.       // In some cases, we want to just show a simple alert dialog:
  2785.       if (update.state == STATE_FAILED && update.errorCode == WRITE_ERROR) {
  2786.         var sbs = 
  2787.             Components.classes["@mozilla.org/intl/stringbundle;1"].
  2788.             getService(Components.interfaces.nsIStringBundleService);
  2789.         var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2790.         var title = updateBundle.GetStringFromName("updaterIOErrorTitle");
  2791.         var text = updateBundle.formatStringFromName("updaterIOErrorMsg",
  2792.                                                      [gApp.name, gApp.name], 2);
  2793.         var ww =
  2794.             Components.classes["@mozilla.org/embedcomp/window-watcher;1"].
  2795.             getService(Components.interfaces.nsIWindowWatcher);
  2796.         ww.getNewPrompter(null).alert(title, text);
  2797.       } else {
  2798.         this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2799.                      "errors", update);
  2800.       }
  2801.     }
  2802.   },
  2803.   
  2804.   /**
  2805.    * See nsIUpdateService.idl
  2806.    */
  2807.   showUpdateHistory: function(parent) {
  2808.     this._showUI(parent, URI_UPDATE_HISTORY_DIALOG, "modal,dialog=yes", "Update:History", 
  2809.                  null, null);
  2810.   },
  2811.   
  2812.   /**
  2813.    * Whether or not we are enabled (i.e. not in Silent mode)
  2814.    */
  2815.   get _enabled() {
  2816.     return !getPref("getBoolPref", PREF_APP_UPDATE_SILENT, false);
  2817.   },
  2818.   
  2819.   /**
  2820.    * Show the Update Checking UI
  2821.    * @param   parent
  2822.    *          A parent window, can be null
  2823.    * @param   uri
  2824.    *          The URI string of the dialog to show
  2825.    * @param   name
  2826.    *          The Window Name of the dialog to show, in case it is already open
  2827.    *          and can merely be focused
  2828.    * @param   page
  2829.    *          The page of the wizard to be displayed, if one is already open.
  2830.    * @param   update
  2831.    *          An update to pass to the UI in the window arguments. 
  2832.    *          Can be null
  2833.    */
  2834.   _showUI: function(parent, uri, features, name, page, update) {
  2835.     var ary = null;
  2836.     if (update) {
  2837.       ary = Components.classes["@mozilla.org/supports-array;1"]
  2838.                       .createInstance(Components.interfaces.nsISupportsArray);
  2839.       ary.AppendElement(update);
  2840.     }
  2841.       
  2842.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  2843.                        .getService(Components.interfaces.nsIWindowMediator);
  2844.     var win = wm.getMostRecentWindow(name);
  2845.     if (win) {
  2846.       if (page && "setCurrentPage" in win)
  2847.         win.setCurrentPage(page);
  2848.       win.focus();
  2849.     }
  2850.     else {
  2851.       var openFeatures = "chrome,centerscreen,dialog=no,resizable=no,titlebar,toolbar=no";
  2852.       if (features)
  2853.         openFeatures += "," + features;
  2854.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2855.                          .getService(Components.interfaces.nsIWindowWatcher);
  2856.       ww.openWindow(parent, uri, "", openFeatures, ary);
  2857.     }
  2858.   },
  2859.   
  2860.   /**
  2861.    * See nsISupports.idl
  2862.    */
  2863.   QueryInterface: function(iid) {
  2864.     if (!iid.equals(Components.interfaces.nsIUpdatePrompt) &&
  2865.         !iid.equals(Components.interfaces.nsISupports))
  2866.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2867.     return this;
  2868.   }
  2869. };
  2870. //@line 2848 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2871.  
  2872. var gModule = {
  2873.   registerSelf: function(componentManager, fileSpec, location, type) {
  2874.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2875.     
  2876.     for (var key in this._objects) {
  2877.       var obj = this._objects[key];
  2878.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  2879.                                                fileSpec, location, type);
  2880.     }
  2881.  
  2882.     // Make the Update Service a startup observer
  2883.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2884.                                     .getService(Components.interfaces.nsICategoryManager);
  2885.     categoryManager.addCategoryEntry("app-startup", this._objects.service.className,
  2886.                                      "service," + this._objects.service.contractID, 
  2887.                                      true, true);
  2888.   },
  2889.   
  2890.   getClassObject: function(componentManager, cid, iid) {
  2891.     if (!iid.equals(Components.interfaces.nsIFactory))
  2892.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2893.  
  2894.     for (var key in this._objects) {
  2895.       if (cid.equals(this._objects[key].CID))
  2896.         return this._objects[key].factory;
  2897.     }
  2898.     
  2899.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2900.   },
  2901.   
  2902.   _objects: {
  2903.     service: { CID        : Components.ID("{B3C290A6-3943-4B89-8BBE-C01EB7B3B311}"),
  2904.                contractID : "@mozilla.org/updates/update-service;1",
  2905.                className  : "Update Service",
  2906.                factory    : makeFactory(UpdateService)
  2907.              },
  2908.     checker: { CID        : Components.ID("{898CDC9B-E43F-422F-9CC4-2F6291B415A3}"),
  2909.                contractID : "@mozilla.org/updates/update-checker;1",
  2910.                className  : "Update Checker",
  2911.                factory    : makeFactory(Checker)
  2912.              },
  2913. //@line 2891 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2914.     prompt:  { CID        : Components.ID("{27ABA825-35B5-4018-9FDD-F99250A0E722}"),
  2915.                contractID : "@mozilla.org/updates/update-prompt;1",
  2916.                className  : "Update Prompt",
  2917.                factory    : makeFactory(UpdatePrompt)
  2918.              },
  2919. //@line 2897 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2920.     timers:  { CID        : Components.ID("{B322A5C0-A419-484E-96BA-D7182163899F}"),
  2921.                contractID : "@mozilla.org/updates/timer-manager;1",
  2922.                className  : "Timer Manager",
  2923.                factory    : makeFactory(TimerManager)
  2924.              },
  2925.     manager: { CID        : Components.ID("{093C2356-4843-4C65-8709-D7DBCBBE7DFB}"),
  2926.                contractID : "@mozilla.org/updates/update-manager;1",
  2927.                className  : "Update Manager",
  2928.                factory    : makeFactory(UpdateManager)
  2929.              },
  2930.   },
  2931.   
  2932.   canUnload: function(componentManager) {
  2933.     return true;
  2934.   }
  2935. };
  2936.  
  2937. /**
  2938.  * Creates a factory for instances of an object created using the passed-in
  2939.  * constructor.
  2940.  */
  2941. function makeFactory(ctor) {
  2942.   function ci(outer, iid) {
  2943.     if (outer != null)
  2944.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  2945.     return (new ctor()).QueryInterface(iid);
  2946.   } 
  2947.   return { createInstance: ci };
  2948. }
  2949.   
  2950. function NSGetModule(compMgr, fileSpec) {
  2951.   return gModule;
  2952. }
  2953.  
  2954. /**
  2955.  * Determines whether or there are installed addons which are incompatible 
  2956.  * with this update.
  2957.  * @param   update
  2958.  *          The update to check compatibility against
  2959.  * @returns true if there are no addons installed that are incompatible with
  2960.  *          the specified update, false otherwise.
  2961.  */
  2962. function isCompatible(update) {
  2963. //@line 2941 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2964.   var em = 
  2965.       Components.classes["@mozilla.org/extensions/manager;1"].
  2966.       getService(nsIExtensionManager);
  2967.   var items = em.getIncompatibleItemList("", update.extensionVersion,
  2968.     nsIUpdateItem.TYPE_ADDON, false, { });
  2969.   return items.length == 0;
  2970. //@line 2950 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2971. }
  2972.  
  2973. /**
  2974.  * Shows a prompt for an update, provided there are no incompatible addons.
  2975.  * If there are, kick off an update check and see if updates are available
  2976.  * that will resolve the incompatibilities.
  2977.  * @param   update
  2978.  *          The available update to show
  2979.  */
  2980. function showPromptIfNoIncompatibilities(update) {
  2981.   function showPrompt(update) {
  2982.     LOG("UpdateService", "_selectAndInstallUpdate: need to prompt user before continuing...");
  2983.     var prompter = 
  2984.         Components.classes["@mozilla.org/updates/update-prompt;1"].
  2985.         createInstance(Components.interfaces.nsIUpdatePrompt);
  2986.     prompter.showUpdateAvailable(update);
  2987.   }
  2988.  
  2989. //@line 2969 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2990.   /**
  2991.    * Determines if an addon is compatible with a particular update.
  2992.    * @param   addon
  2993.    *          The addon to check
  2994.    * @param   version
  2995.    *          The extensionVersion of the update to check for compatibility 
  2996.    *          against.
  2997.    * @returns true if the addon is compatible, false otherwise
  2998.    */
  2999.   function addonIsCompatible(addon, version) {
  3000.     var vc = 
  3001.         Components.classes["@mozilla.org/xpcom/version-comparator;1"].
  3002.         getService(Components.interfaces.nsIVersionComparator);
  3003.     return (vc.compare(version, addon.minAppVersion) >= 0) &&
  3004.           (vc.compare(version, addon.maxAppVersion) <= 0);
  3005.   }
  3006.  
  3007.   /**
  3008.    * An object implementing nsIAddonUpdateCheckListener that looks for 
  3009.    * available updates to addons and if updates are found that will make the 
  3010.    * user's installed addon set compatible with the update, suppresses the
  3011.    * prompt that would otherwise be shown.
  3012.    * @param   addons
  3013.    *          An array of incompatible addons that are installed.
  3014.    * @constructor
  3015.    */
  3016.   function Listener(addons) {
  3017.     this._addons = addons;
  3018.   }
  3019.   Listener.prototype = {
  3020.     _addons: null,
  3021.     
  3022.     /**
  3023.      * See nsIUpdateService.idl
  3024.      */
  3025.     onUpdateStarted: function() { 
  3026.     },
  3027.     onUpdateEnded: function() {
  3028.       // There are still incompatibilities, even after an extension update 
  3029.       // check to see if there were newer, compatible versions available, so
  3030.       // we have to prompt. 
  3031.       // 
  3032.       // PREF_APP_UPDATE_INCOMPATIBLE_MODE controls the mode in which we 
  3033.       // handle incompatibilities:
  3034.       // UPDATE_CHECK_NEWVERSION    We count both VersionInfo updates _and_
  3035.       //      NewerVersion updates against the list of incompatible addons
  3036.       //      installed - i.e. if Foo 1.2 is installed and it is incompatible
  3037.       //      with the update, and we find Foo 2.0 which is but which is not
  3038.       //      yet downloaded or installed, then we do NOT prompt because the
  3039.       //      user can download Foo 2.0 when they restart after the update
  3040.       //      during the mismatch checking UI. This is the default, since it
  3041.       //      suppresses most prompt dialogs. 
  3042.       // UPDATE_CHECK_COMPATIBILITY    We count only VersionInfo updates
  3043.       //      against the list of incompatible addons installed - i.e. if the
  3044.       //      situation above with Foo 1.2 and available update to 2.0
  3045.       //      applies, we DO show the prompt since a download operation will
  3046.       //      be required after the update. This is not the default and is
  3047.       //      supplied only as a hidden option for those that want it. 
  3048.       var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3049.                          nsIExtensionManager.UPDATE_CHECK_NEWVERSION);
  3050.       if ((mode == nsIExtensionManager.UPDATE_CHECK_NEWVERSION
  3051.            && this._addons.length) || !isCompatible(update))
  3052.         showPrompt(update);
  3053.     },
  3054.     onAddonUpdateStarted: function(addon) {
  3055.     },
  3056.     onAddonUpdateEnded: function(addon, status) {
  3057.       if (status == Components.interfaces.nsIAddonUpdateCheckListener.STATUS_UPDATE &&
  3058.           addonIsCompatible(addon, update.extensionVersion)) {
  3059.         for (var i = 0; i < this._addons.length; ++i) {
  3060.           if (this._addons[i] == addon) {
  3061.             this._addons.splice(i, 1);
  3062.             break;
  3063.           }
  3064.         }
  3065.       }
  3066.     },
  3067.     /**
  3068.      * See nsISupports.idl
  3069.      */
  3070.     QueryInterface: function(iid) {
  3071.       if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  3072.           !iid.equals(Components.interfaces.nsISupports))
  3073.         throw Components.results.NS_ERROR_NO_INTERFACE;
  3074.       return this;
  3075.     }
  3076.   };
  3077.   
  3078.   if (!isCompatible(update)) {
  3079.     var em = 
  3080.         Components.classes["@mozilla.org/extensions/manager;1"].
  3081.         getService(nsIExtensionManager);
  3082.     var listener = new Listener(em.getIncompatibleItemList("", 
  3083.       update.extensionVersion, nsIUpdateItem.TYPE_ADDON, false, { }));
  3084.     // See documentation on |mode| above. 
  3085.     var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3086.                        nsIExtensionManager.UPDATE_CHECK_NEWVERSION);
  3087.     em.update([], 0, mode, listener);
  3088.   }
  3089.   else
  3090. //@line 3070 "/cygdrive/d/builds/tinderbox/XR-Trunk/WINNT_5.2_Depend/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3091.     showPrompt(update);
  3092. }
  3093.